From db4f0fb6e66a1ee6db722d7236c27fad7790b7ab Mon Sep 17 00:00:00 2001 From: hno <> Date: Sun, 9 Feb 2003 00:36:16 +0000 Subject: [PATCH] Work around a size_t printf warning.. --- src/client_side.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client_side.cc b/src/client_side.cc index 7930d0e4f8..704fb9b2cd 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -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 */ -- 2.47.3