From: hno <> Date: Fri, 15 Sep 2006 20:52:19 +0000 (+0000) Subject: Convert a debug() to debugs() to make GCC happy about formatting X-Git-Tag: SQUID_3_0_PRE5~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69bf5fa7b030c431ae577d69e2df885b016a8a57;p=thirdparty%2Fsquid.git Convert a debug() to debugs() to make GCC happy about formatting --- diff --git a/src/BodyReader.cc b/src/BodyReader.cc index 6848a5ce3b..f4713f67bb 100644 --- a/src/BodyReader.cc +++ b/src/BodyReader.cc @@ -52,7 +52,7 @@ BodyReader::read(CBCB *callback, void *cbdata) debugs(32,3,HERE << this << " " << "data=" << read_func_data); size_t size = theBuf.potentialSpaceSize(); - debug(32, 3) ("BodyReader::read: available: %d, size %d, _remaining: %d\n", _available, size, _remaining); + debugs(32, 3, "BodyReader::read: available: " << _available << ", size " << size << ", remaining: " << _remaining); if (size > _available) size = _available;