From 3b9f9dd07b77c6317970439f08c8a3dc2444dddc Mon Sep 17 00:00:00 2001 From: James Zern Date: Thu, 19 Dec 2013 18:52:48 -0800 Subject: [PATCH] gif2webp: don't use C99 %zu this would require a PRIuS or similar macro for proper platform compatibility (Visual Studio for instance would be variants of %lu) Change-Id: I2b9fcb1639db024775fb47dbcf79a2240f3d98f2 --- examples/gif2webp.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/gif2webp.c b/examples/gif2webp.c index 49059c56..f360be1d 100644 --- a/examples/gif2webp.c +++ b/examples/gif2webp.c @@ -58,7 +58,7 @@ static void SanitizeKeyFrameIntervals(size_t* const kmin_ptr, kmin = kmax - 1; if (print_warning) { fprintf(stderr, - "WARNING: Setting kmin = %zu, so that kmin < kmax.\n", kmin); + "WARNING: Setting kmin = %d, so that kmin < kmax.\n", (int)kmin); } } else if (kmin < (kmax / 2 + 1)) { // This ensures that cache.keyframe + kmin >= kmax is always true. So, we @@ -66,8 +66,8 @@ static void SanitizeKeyFrameIntervals(size_t* const kmin_ptr, kmin = (kmax / 2 + 1); if (print_warning) { fprintf(stderr, - "WARNING: Setting kmin = %zu, so that kmin >= kmax / 2 + 1.\n", - kmin); + "WARNING: Setting kmin = %d, so that kmin >= kmax / 2 + 1.\n", + (int)kmin); } } // Limit the max number of frames that are allocated. @@ -75,8 +75,8 @@ static void SanitizeKeyFrameIntervals(size_t* const kmin_ptr, kmin = kmax - MAX_CACHE_SIZE; if (print_warning) { fprintf(stderr, - "WARNING: Setting kmin = %zu, so that kmax - kmin <= 30.\n", - kmin); + "WARNING: Setting kmin = %d, so that kmax - kmin <= 30.\n", + (int)kmin); } } *kmin_ptr = kmin;