From 9fe48d7a0858ad099d24c58c6dbf8fb19d5ecde1 Mon Sep 17 00:00:00 2001 From: Jordan Lee Date: Mon, 26 Aug 2013 17:12:16 +0000 Subject: [PATCH] (trunk, libT) #5476: correct the definitions of PRIu64 and PRIu32 on win32 systems; thanks to rb07 for this correction --- libtransmission/transmission.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.40.0