Skip to content

Commit b994b9b

Browse files
committed
Merge branch 'sb/parse-options-codeformat' into maint
* sb/parse-options-codeformat: parse-options: align curly braces for all options
2 parents 223b55a + 14691e3 commit b994b9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parse-options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ struct option {
126126
#define OPT_BOOL(s, l, v, h) OPT_SET_INT(s, l, v, h, 1)
127127
#define OPT_HIDDEN_BOOL(s, l, v, h) { OPTION_SET_INT, (s), (l), (v), NULL, \
128128
(h), PARSE_OPT_NOARG | PARSE_OPT_HIDDEN, NULL, 1}
129-
#define OPT_CMDMODE(s, l, v, h, i) { OPTION_CMDMODE, (s), (l), (v), NULL, \
129+
#define OPT_CMDMODE(s, l, v, h, i) { OPTION_CMDMODE, (s), (l), (v), NULL, \
130130
(h), PARSE_OPT_NOARG|PARSE_OPT_NONEG, NULL, (i) }
131131
#define OPT_INTEGER(s, l, v, h) { OPTION_INTEGER, (s), (l), (v), N_("n"), (h) }
132132
#define OPT_STRING(s, l, v, a, h) { OPTION_STRING, (s), (l), (v), (a), (h) }

0 commit comments

Comments
 (0)