diff options
Diffstat (limited to 'script/mks3param_ctx_table.pl')
-rw-r--r-- | script/mks3param_ctx_table.pl | 4 |
1 files 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"); } } |