summaryrefslogtreecommitdiff
path: root/image
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-05-28 17:33:18 +0100
committerVincent Sanders <vince@kyllikki.org>2015-05-28 17:33:18 +0100
commit20d29c0537385ed4456e242a792784fc33344f3a (patch)
treed19dbecbb9eb24a18a4b1077db3579752dcc6630 /image
parent0d811963c1498aa625b5438bf66dbb677a0d4494 (diff)
downloadnetsurf-20d29c0537385ed4456e242a792784fc33344f3a.tar.gz
netsurf-20d29c0537385ed4456e242a792784fc33344f3a.tar.bz2
fixup logging macros that incorrectly override the LOG() macro name
Diffstat (limited to 'image')
-rw-r--r--image/image_cache.c2
1 files changed, 1 insertions, 1 deletions
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,