Skip to content

Commit 0add026

Browse files
committed
Initialize values string in a more consistent spot.
1 parent f418484 commit 0add026

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

daemon-parm.awk

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
BEGIN {
77
heading = "/* DO NOT EDIT THIS FILE! It is auto-generated from a list of values in " ARGV[1] "! */\n\n"
88
sect = psect = defines = accessors = prior_ptype = ""
9-
values = "\nstatic const all_vars Defaults = {\n { /* Globals: */\n"
109
parms = "\nstatic struct parm_struct parm_table[] = {"
1110
comment_fmt = "\n/********** %s **********/\n"
1211
tdstruct = "typedef struct {"
@@ -22,6 +21,7 @@ BEGIN {
2221
exit
2322
}
2423
defines = tdstruct
24+
values = "\nstatic const all_vars Defaults = {\n { /* Globals: */\n"
2525
exps = exp_values = sprintf(comment_fmt, "EXP")
2626
sect = "GLOBAL"
2727
psect = ", P_GLOBAL, &Vars.g."

0 commit comments

Comments
 (0)