]> granicus.if.org Git - curl/commitdiff
cpp: use #ifdef __MINGW32__ to avoid compiler complaints
authorDaniel Stenberg <daniel@haxx.se>
Fri, 5 Apr 2013 22:55:27 +0000 (00:55 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 5 Apr 2013 22:56:32 +0000 (00:56 +0200)
... instead of just #if

tests/server/util.c

index 8158cb2914e3fec06e5ae2f44ca7d89a91a71cbb..bd65428265652dc51835331f4c016b0dc0fe4fd7 100644 (file)
@@ -55,7 +55,7 @@
 #define EINVAL  22 /* errno.h value */
 #endif
 
-#if __MINGW32__
+#ifdef __MINGW32__
 #include <TlHelp32.h>
 #endif