(svn r10607) -Fix r10605: use '&&' in preprocessor directives (MSVC doesn't like 'and')
authorglx
Wed, 18 Jul 2007 02:08:56 +0000
changeset 7277 0b39725581e1
parent 7276 16061f14665c
child 7278 c5b4203c6e1c
(svn r10607) -Fix r10605: use '&&' in preprocessor directives (MSVC doesn't like 'and')
src/stdafx.h
--- a/src/stdafx.h	Tue Jul 17 20:32:27 2007 +0000
+++ b/src/stdafx.h	Wed Jul 18 02:08:56 2007 +0000
@@ -349,10 +349,10 @@
 #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