]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Work around a size_t printf warning..
authorhno <>
Sun, 9 Feb 2003 00:36:16 +0000 (00:36 +0000)
committerhno <>
Sun, 9 Feb 2003 00:36:16 +0000 (00:36 +0000)
src/client_side.cc

index 7930d0e4f84b110e39c4678baf1c652935aaad61..704fb9b2cda5124c12b1946f6997eed0d06e5d9d 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: client_side.cc,v 1.616 2003/01/28 06:18:12 robertc Exp $
+ * $Id: client_side.cc,v 1.617 2003/02/08 17:36:16 hno Exp $
  *
  * DEBUG: section 33    Client-side Routines
  * AUTHOR: Duane Wessels
@@ -1152,7 +1152,7 @@ ClientSocketContext::getNextRangeOffset() const
 {
     if (http->request->range) {
        /* offset in range specs does not count the prefix of an http msg */
-       debug (0,0) ("ClientSocketContext::getNextRangeOffset: http offset %lu\n", http->out.offset);
+       debug (0,0) ("ClientSocketContext::getNextRangeOffset: http offset %lu\n", (long unsigned)http->out.offset);
        /* check: reply was parsed and range iterator was initialized */
        assert(http->range_iter.valid);
        /* filter out data according to range specs */