Fixed warning on 64 bits (Yep, again)
Former-commit-id: 303f3592124dfbd9b15fbaf04ba371cdfe20209a
This commit is contained in:
parent
8116559242
commit
44f1309836
|
|
@ -16,10 +16,10 @@
|
|||
|
||||
// C'est malheureux mais le spécificateur %z de (f)printf n'est pas supporté partout
|
||||
#ifdef NAZARA_COMPILER_MINGW
|
||||
#ifdef defined(NAZARA_PLATFORM_x64)
|
||||
#define SIZE_T_SPECIFIER "%lu"
|
||||
#else
|
||||
#ifdef NAZARA_PLATFORM_x64
|
||||
#define SIZE_T_SPECIFIER "%llu"
|
||||
#else
|
||||
#define SIZE_T_SPECIFIER "%u"
|
||||
#endif
|
||||
#else
|
||||
#define SIZE_T_SPECIFIER "%zu" // Standard
|
||||
|
|
|
|||
Loading…
Reference in New Issue