From 20d29c0537385ed4456e242a792784fc33344f3a Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 28 May 2015 17:33:18 +0100 Subject: fixup logging macros that incorrectly override the LOG() macro name --- image/image_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'image') diff --git a/image/image_cache.c b/image/image_cache.c index 49285635f..046a399ed 100644 --- a/image/image_cache.c +++ b/image/image_cache.c @@ -419,7 +419,7 @@ nserror image_cache_fini(void) (image_cache->hit_count * 100) / op_count, (image_cache->miss_count * 100) / op_count, (image_cache->fail_count * 100) / op_count); - LOG("Cache total/hit/miss/fail (size) %zd/%zd/%zd/%zd (100%%/%"PRId64"%%/%"PRId64"%%/%"PRId64"%%)", + LOG("Cache total/hit/miss/fail (size) %"PRIu64"/%"PRIu64"/%"PRIu64"/%"PRIu64" (100%%/%"PRId64"%%/%"PRId64"%%/%"PRId64"%%)", op_size, image_cache->hit_size, image_cache->miss_size, -- cgit v1.2.3