(trunk, libT) #5476: correct the definitions of PRIu64 and PRIu32 on win32 systems; thanks to rb07 for this correction

This commit is contained in:
Jordan Lee 2013-08-26 17:12:16 +00:00
parent d112a813e9
commit 9fe48d7a08
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ extern "C" {
#ifndef PRIu64
#ifdef WIN32
#define PRIu64 "uI64"
#define PRIu64 "I64u"
#else
#define PRIu64 "llu"
#endif
@ -72,7 +72,7 @@ extern "C" {
#ifndef PRIu32
#ifdef WIN32
#define PRIu32 "uI32"
#define PRIu32 "u"
#else
#define PRIu32 "lu"
#endif