From d8690139b4858bb2b8fe22fcbe6fe0be287efc0a Mon Sep 17 00:00:00 2001 From: glx Date: Wed, 18 Jul 2007 02:08:56 +0000 Subject: [PATCH] (svn r10607) -Fix r10605: use '&&' in preprocessor directives (MSVC doesn't like 'and') --- src/stdafx.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stdafx.h b/src/stdafx.h index 22576e84b7..7dae3ebdb7 100644 --- a/src/stdafx.h +++ b/src/stdafx.h @@ -349,10 +349,10 @@ CDECL error(const char *str, ...); #define _stricmp strcasecmp #endif -#if !defined(MORPHOS) and !defined(OPENBSD) +#if !defined(MORPHOS) && !defined(OPENBSD) /* MorphOS & OpenBSD don't know wchars, the rest does :( */ #define HAS_WCHAR -#endif /* !defined(MORHPOS) and !defined(OPENBSD) */ +#endif /* !defined(MORPHOS) && !defined(OPENBSD) */ #if !defined(MAX_PATH) # define MAX_PATH 260