From a877bc2f01e6430547787411f805eaedef0d7112 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Wed, 16 Nov 2016 18:42:56 +0100 Subject: [PATCH] FIX: wrong compile define used, __WIN32 should be _WIN32 --- client/proxmark3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2