From: Michal Krol Date: Sat, 31 May 2008 16:40:00 +0000 (+0200) Subject: gallium: Fix preprocessor logic. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9046d1acfa91621ee83b3933fe6e4b52deb00cbf;p=mesa.git gallium: Fix preprocessor logic. --- diff --git a/src/gallium/include/pipe/p_util.h b/src/gallium/include/pipe/p_util.h index fe4ba3a689d..9497eeeec9b 100644 --- a/src/gallium/include/pipe/p_util.h +++ b/src/gallium/include/pipe/p_util.h @@ -410,7 +410,7 @@ extern void pipe_copy_rect(ubyte * dst, unsigned cpp, unsigned dst_pitch, -#if !defined(_MSC_VER) && _MSC_VER < 0x800 +#if !defined(_MSC_VER) || _MSC_VER < 0x800 #if !defined(_INC_MATH) || !defined(__cplusplus) static INLINE float cosf( float f )