From: Daniel Stenberg Date: Fri, 5 Apr 2013 22:55:27 +0000 (+0200) Subject: cpp: use #ifdef __MINGW32__ to avoid compiler complaints X-Git-Tag: curl-7_30_0~44 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6eb56e72de1356d6f5f52a80be487a68ec463cf9;p=curl cpp: use #ifdef __MINGW32__ to avoid compiler complaints ... instead of just #if --- diff --git a/tests/server/util.c b/tests/server/util.c index 8158cb291..bd6542826 100644 --- a/tests/server/util.c +++ b/tests/server/util.c @@ -55,7 +55,7 @@ #define EINVAL 22 /* errno.h value */ #endif -#if __MINGW32__ +#ifdef __MINGW32__ #include #endif