mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Changed bare words to strings so we don't get complaints about unterminated
char constants. svn path=/trunk/; revision=13957
This commit is contained in:
parent
3db0384e86
commit
e58c615243
1 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue