From 7792e58274152ce83e067a57a372b0695503ae8f Mon Sep 17 00:00:00 2001 From: OronDF343 Date: Thu, 6 Dec 2018 21:25:11 +0200 Subject: [PATCH] Fix compilation error for MSVC x64 --- tools/test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/test.c b/tools/test.c index 447f42f0..1df55ff3 100644 --- a/tools/test.c +++ b/tools/test.c @@ -33,9 +33,9 @@ typedef struct RGBA https://code.google.com/archive/p/msinttypes/ */ #if defined(_MSC_VER) - #define F_I_FILE_SIZE "%lu" + #define F_I_FILE_SIZE "lu" #if defined(_WIN64) - #define F_BLOB_SIZE_T "%I64u" + #define F_BLOB_SIZE_T "I64u" #else #define F_BLOB_SIZE_T "PRIu32" #endif