From: iceman1001 Date: Wed, 16 Nov 2016 17:42:56 +0000 (+0100) Subject: FIX: wrong compile define used, __WIN32 should be _WIN32 X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/a877bc2f01e6430547787411f805eaedef0d7112?ds=sidebyside FIX: wrong compile define used, __WIN32 should be _WIN32 --- diff --git a/client/proxmark3.h b/client/proxmark3.h index 87cf3e74..2c881042 100644 --- a/client/proxmark3.h +++ b/client/proxmark3.h @@ -13,7 +13,7 @@ #define PROXMARK3_H__ // Handle platform specific includes -#ifdef __WIN32 +#ifdef _WIN32 // for MINGW32 environments #define _USE_32BIT_TIME_T 1 #include