From: wessels <> Date: Thu, 1 Feb 2007 06:58:25 +0000 (+0000) Subject: minor printf typo "%ud" should be "%u" X-Git-Tag: SQUID_3_0_PRE6~149 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f2f33a6d16e1c5dafa931f50df10dad281e2a4be;p=thirdparty%2Fsquid.git minor printf typo "%ud" should be "%u" --- diff --git a/src/client_side_reply.cc b/src/client_side_reply.cc index d35bd6c1e2..adb97a6cf1 100644 --- a/src/client_side_reply.cc +++ b/src/client_side_reply.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side_reply.cc,v 1.115 2007/01/28 15:37:46 serassio Exp $ + * $Id: client_side_reply.cc,v 1.116 2007/01/31 23:58:25 wessels Exp $ * * DEBUG: section 88 Client-side Reply Routines * AUTHOR: Robert Collins (Originally Duane Wessels in client_side.c) @@ -452,7 +452,7 @@ clientReplyContext::cacheHit(StoreIOBuffer result) HttpRequest *r = http->request; - debug(88, 3) ("clientCacheHit: %s, %ud bytes\n", http->uri, (unsigned int)result.length); + debug(88, 3) ("clientCacheHit: %s, %u bytes\n", http->uri, (unsigned int)result.length); if (http->storeEntry() == NULL) { debug(88, 3) ("clientCacheHit: request aborted\n");