]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
printf typedef : %d, size_t -> %lu, (unsigned long int) size_t.
authoradrian <>
Mon, 14 Oct 2002 17:09:26 +0000 (17:09 +0000)
committeradrian <>
Mon, 14 Oct 2002 17:09:26 +0000 (17:09 +0000)
src/ftp.cc

index 0b08f3d2d94b78ea5483a10015ff02046b415f1b..51004cd0d4fae05e4396c7606179c460398755a6 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: ftp.cc,v 1.333 2002/10/14 08:49:59 robertc Exp $
+ * $Id: ftp.cc,v 1.334 2002/10/14 11:09:26 adrian Exp $
  *
  * DEBUG: section 9     File Transfer Protocol (FTP)
  * AUTHOR: Harvest Derived
@@ -819,7 +819,7 @@ ftpParseListing(FtpStateData * ftpState)
        xfree(sbuf);
        return;
     }
-    debug(9, 3) ("ftpParseListing: %d bytes to play with\n", len);
+    debug(9, 3) ("ftpParseListing: %lu bytes to play with\n", (unsigned long int)len);
     line = (char *)memAllocate(MEM_4K_BUF);
     end++;
     storeBuffer(e);