mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-22 02:42:20 +00:00
Merge branch 'fix-exotic-prids' into 'master'
Fix PRIdS define for Windows MINGW64 See merge request STJr/SRB2!1367
This commit is contained in:
commit
5da5b6dd86
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ typedef off_t off64_t;
|
|||
|
||||
#if defined(__MINGW32__) && ((__GNUC__ > 7) || (__GNUC__ == 6 && __GNUC_MINOR__ >= 3)) && (__GNUC__ < 8)
|
||||
#define PRIdS "u"
|
||||
#elif defined (_WIN32)
|
||||
#elif defined(_WIN32) && !defined(__MINGW64__)
|
||||
#define PRIdS "Iu"
|
||||
#else
|
||||
#define PRIdS "zu"
|
||||
|
|
Loading…
Reference in a new issue