From 32d3025c499ae188ac8cc3e67175356b1c5aee54 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Sun, 18 Jan 2015 19:01:59 -0800 Subject: [PATCH] Portability: Make strict compilers happier with rev.13860 --- src/cache_cf.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 39f82accdc..9fda772104 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -4268,7 +4268,7 @@ dump_access_log(StoreEntry * entry, const char *name, CustomLog * logs) // default: 64KB if (log->bufferSize != 64*1024) - storeAppendPrintf(entry, " buffer-size=%d", log->bufferSize); + storeAppendPrintf(entry, " buffer-size=%" PRIuSIZE, log->bufferSize); if (log->rotateCount >= 0) storeAppendPrintf(entry, " rotate=%d", log->rotateCount); -- 2.47.3