Skip to content

Commit 4ad50b8

Browse files
authored
Merge pull request #44 from Yamamame/develop
コンパイルオプションの文字列連結を修正 Fix problem that combining option strings when using many `-I` options.
2 parents 4cf28db + ce17366 commit 4ad50b8

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)