Fixed warning on 64 bits (Yep, again)

Former-commit-id: 303f3592124dfbd9b15fbaf04ba371cdfe20209a
This commit is contained in:
Lynix 2013-05-03 11:48:59 +02:00
parent 8116559242
commit 44f1309836
1 changed files with 3 additions and 3 deletions

View File

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