Skip to content

Commit ce17366

Browse files
committed
コンパイルオプションの文字列連結を修正
1 parent 4cf28db commit ce17366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cobc/cobc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1168,7 +1168,7 @@ process_command_line (const int argc, char *argv[])
11681168
#ifdef _MSC_VER
11691169
strcat (cob_define_flags, "/I ");
11701170
#else
1171-
strcat (cob_define_flags, "-I");
1171+
strcat (cob_define_flags, " -I");
11721172
#endif
11731173
strcat (cob_define_flags, "\"");
11741174
strcat (cob_define_flags, optarg);

0 commit comments

Comments
 (0)