Skip to content

Commit f1dd8db

Browse files
committed
Avoid line break in goto-check options
Just a C string formatting change: This will avoid having to write extra code in the bash autocompletion generator.
1 parent 397fcbd commit f1dd8db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ansi-c/goto_check_c.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ void goto_check_c(
3939

4040
#define OPT_GOTO_CHECK \
4141
"(bounds-check)(pointer-check)(memory-leak-check)" \
42-
"(div-by-zero-check)(enum-range-check)(signed-overflow-check)(unsigned-" \
43-
"overflow-check)" \
42+
"(div-by-zero-check)(enum-range-check)" \
43+
"(signed-overflow-check)(unsigned-overflow-check)" \
4444
"(pointer-overflow-check)(conversion-check)(undefined-shift-check)" \
4545
"(float-overflow-check)(nan-check)(no-built-in-assertions)" \
4646
"(pointer-primitive-check)" \

0 commit comments

Comments
 (0)