FIX: fixes warning for "%zu" string formatspecifier on MINGW systems. (Thanks to @marshmellow42 for this one)

This commit is contained in:
iceman1001 2017-01-31 05:33:24 +01:00
commit 71aa1ff824
2 changed files with 4 additions and 2 deletions

View file

@ -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