]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Convert a debug() to debugs() to make GCC happy about formatting
authorhno <>
Fri, 15 Sep 2006 20:52:19 +0000 (20:52 +0000)
committerhno <>
Fri, 15 Sep 2006 20:52:19 +0000 (20:52 +0000)
src/BodyReader.cc

index 6848a5ce3bb717bf7f2862da84b7238b964e061d..f4713f67bb479be1e0c7c06c769c8b8a17892c3a 100644 (file)
@@ -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;