Skip to content

Commit f8ca7e2

Browse files
committed
Remove quotes inside preprocessor defines to avoid problems with shell quote.
1 parent bc3bc8f commit f8ca7e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,7 @@ bool configt::set(const cmdlinet &cmdline)
862862
#endif
863863

864864
// MinGW has extra defines
865-
ansi_c.defines.push_back("__int64=\"long long\"");
865+
ansi_c.defines.push_back("__int64=long long");
866866
}
867867
else
868868
{

0 commit comments

Comments
 (0)