From 36f4f72060b44e0b2d4563a24f9e811a8fe87eef Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 17 Oct 2013 09:28:57 +0200 Subject: [PATCH] script/mks3param_ctx_table.pl: fix tabs/whitespaces in generated output. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Stefan Metzmacher Reviewed-by: Günther Deschner Autobuild-User(master): Günther Deschner Autobuild-Date(master): Fri Oct 18 16:20:01 CEST 2013 on sn-devel-104 --- script/mks3param_ctx_table.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/mks3param_ctx_table.pl b/script/mks3param_ctx_table.pl index cfd6e029da..22efc88ca6 100644 --- a/script/mks3param_ctx_table.pl +++ b/script/mks3param_ctx_table.pl @@ -64,7 +64,7 @@ sub print_header($) { my ($file) = @_; $file->("/* This file was automatically generated by mks3param_ctx.pl. DO NOT EDIT */\n\n"); - $file->("static const struct loadparm_s3_helpers s3_fns = \n"); + $file->("static const struct loadparm_s3_helpers s3_fns =\n"); $file->("{\n"); $file->("\t.get_parametric = lp_parm_const_string_service,\n"); $file->("\t.get_parm_struct = lp_get_parameter,\n"); @@ -95,7 +95,7 @@ sub handle_loadparm($$) my $type = $2; my $name = $3; - $file->(".$name = lp_$name,\n"); + $file->("\t.$name = lp_$name,\n"); } } -- 2.34.1