aboutsummaryrefslogtreecommitdiff
path: root/tests/server/util.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2013-04-06 00:55:27 +0200
committerDaniel Stenberg <daniel@haxx.se>2013-04-06 00:56:32 +0200
commit6eb56e72de1356d6f5f52a80be487a68ec463cf9 (patch)
tree8d38cc31e499bc19feb9c6329e07d6916ca4ecc1 /tests/server/util.c
parenteeefcdff5454407217e1e0056e38e63772f2812d (diff)
cpp: use #ifdef __MINGW32__ to avoid compiler complaints
... instead of just #if
Diffstat (limited to 'tests/server/util.c')
-rw-r--r--tests/server/util.c2
1 files changed, 1 insertions, 1 deletions
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 <TlHelp32.h>
#endif