From e58c615243a9b39ec8db86431d5a8117fcd7caed Mon Sep 17 00:00:00 2001 From: Art Yerkes Date: Sat, 12 Mar 2005 05:46:45 +0000 Subject: [PATCH] Changed bare words to strings so we don't get complaints about unterminated char constants. svn path=/trunk/; revision=13957 --- reactos/tools/tools-check.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/reactos/tools/tools-check.c b/reactos/tools/tools-check.c index b24b3cc9281..8452a2632c5 100644 --- a/reactos/tools/tools-check.c +++ b/reactos/tools/tools-check.c @@ -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 /*