cpp: use #ifdef __MINGW32__ to avoid compiler complaints

... instead of just #if
This commit is contained in:
Daniel Stenberg 2013-04-06 00:55:27 +02:00
parent eeefcdff54
commit 6eb56e72de
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@
#define EINVAL 22 /* errno.h value */
#endif
#if __MINGW32__
#ifdef __MINGW32__
#include <TlHelp32.h>
#endif