From: Jordan Lee Date: Mon, 26 Aug 2013 17:12:16 +0000 (+0000) Subject: (trunk, libT) #5476: correct the definitions of PRIu64 and PRIu32 on win32 systems... X-Git-Tag: 2.83~97 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9fe48d7a0858ad099d24c58c6dbf8fb19d5ecde1;p=transmission (trunk, libT) #5476: correct the definitions of PRIu64 and PRIu32 on win32 systems; thanks to rb07 for this correction --- diff --git a/libtransmission/transmission.h b/libtransmission/transmission.h index 57f020534..a52b07f05 100644 --- a/libtransmission/transmission.h +++ b/libtransmission/transmission.h @@ -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