From f8ca7e2b1a53e417b58265d3c52f3f9328e4e57a Mon Sep 17 00:00:00 2001 From: Andreas Tiemeyer Date: Tue, 24 Oct 2017 17:15:35 +0100 Subject: [PATCH] Remove quotes inside preprocessor defines to avoid problems with shell quote. --- src/util/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/config.cpp b/src/util/config.cpp index 8b4a6177991..7bff6a30bd5 100644 --- a/src/util/config.cpp +++ b/src/util/config.cpp @@ -862,7 +862,7 @@ bool configt::set(const cmdlinet &cmdline) #endif // MinGW has extra defines - ansi_c.defines.push_back("__int64=\"long long\""); + ansi_c.defines.push_back("__int64=long long"); } else {