--------------------- PatchSet 5318 Date: 2002/10/09 08:10:55 Author: adri Branch: commloops Tag: (none) Log: Another typedef to fix compiling where int != size_t Members: src/store_client.c:1.11.4.5->1.11.4.6 Index: squid/src/store_client.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/store_client.c,v retrieving revision 1.11.4.5 retrieving revision 1.11.4.6 diff -u -r1.11.4.5 -r1.11.4.6 --- squid/src/store_client.c 6 Oct 2002 08:09:39 -0000 1.11.4.5 +++ squid/src/store_client.c 9 Oct 2002 08:10:55 -0000 1.11.4.6 @@ -1,6 +1,6 @@ /* - * $Id: store_client.c,v 1.11.4.5 2002/10/06 08:09:39 rbcollins Exp $ + * $Id: store_client.c,v 1.11.4.6 2002/10/09 08:10:55 adri Exp $ * * DEBUG: section 20 Storage Manager Client-Side Interface * AUTHOR: Duane Wessels @@ -192,7 +192,7 @@ debug(20, 3) ("storeClientCopy: %s, from %lu, for length %d, cb %p, cbdata %p\n", storeKeyText(e->hash.key), (unsigned long) copyInto.offset, - copyInto.length, + (int) copyInto.length, callback, data); assert(sc != NULL);