Changed bare words to strings so we don't get complaints about unterminated char constants. Modified: trunk/reactos/tools/tools-check.c _____
Modified: trunk/reactos/tools/tools-check.c --- trunk/reactos/tools/tools-check.c 2005-03-12 04:55:41 UTC (rev 13956) +++ trunk/reactos/tools/tools-check.c 2005-03-12 05:46:45 UTC (rev 13957) @@ -9,9 +9,9 @@
#if (BINUTILS_VERSION_DATE >= 20040902 && BINUTILS_VERSION_DATE <= 20041008) || \ (BINUTILS_VERSION_DATE < 20031001) -#error Due to technical reasons your binutils version can't be used to \ - build ReactOS. Please consider upgrading to newer version. See \ - www.mingw.org for details. +#error "Due to technical reasons your binutils version can't be used to" \ + "build ReactOS. Please consider upgrading to newer version. See" \ + "www.mingw.org for details." #endif
/* @@ -21,9 +21,9 @@
#if (__GNUC__ == 3 && __GNUC_MINOR__ < 3) || \ (__GNUC__ < 3) -#error Due to technical reasons your GCC version can't be used to \ - build ReactOS. Please consider upgrading to newer version. See \ - www.mingw.org for details. +#error "Due to technical reasons your GCC version can't be used to" \ + "build ReactOS. Please consider upgrading to newer version. See" \ + "www.mingw.org for details." #endif
/*