mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
FIX: fixes warning for "%zu" string formatspecifier on MINGW systems. (Thanks to @marshmellow42 for this one)
This commit is contained in:
parent
1cec48cc0e
commit
71aa1ff824
2 changed files with 4 additions and 2 deletions
|
@ -15,7 +15,9 @@
|
|||
// Handle platform specific includes
|
||||
#ifdef _WIN32
|
||||
// for MINGW32 environments
|
||||
#define _USE_32BIT_TIME_T 1
|
||||
#ifndef _USE_32BIT_TIME_T
|
||||
#define _USE_32BIT_TIME_T 1
|
||||
#endif
|
||||
#include <time.h>
|
||||
#include <windows.h>
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue