From: Amos Jeffries Date: Mon, 19 Jan 2015 03:01:59 +0000 (-0800) Subject: Portability: Make strict compilers happier with rev.13860 X-Git-Tag: merge-candidate-3-v1~331 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=32d3025c499ae188ac8cc3e67175356b1c5aee54;p=thirdparty%2Fsquid.git Portability: Make strict compilers happier with rev.13860 --- 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);