]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
dont need cast
authorwessels <>
Tue, 26 May 1998 22:20:20 +0000 (22:20 +0000)
committerwessels <>
Tue, 26 May 1998 22:20:20 +0000 (22:20 +0000)
src/ftp.cc

index 1d0063c4d7d130eca3758f7ca7d252591c78f391..977d1a0b2bf7e63c117edc13e80a50bae8ff1286 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: ftp.cc,v 1.226 1998/05/22 23:44:07 wessels Exp $
+ * $Id: ftp.cc,v 1.227 1998/05/26 16:20:20 wessels Exp $
  *
  * DEBUG: section 9     File Transfer Protocol (FTP)
  * AUTHOR: Harvest Derived
@@ -2128,7 +2128,7 @@ ftpPutStart(FtpStateData * ftpState)
 static void
 ftpPutTransferDone(int fd, char *bufnotused, size_t size, int errflag, void *data)
 {
-    FtpStateData *ftpState = (FtpStateData *) data;
+    FtpStateData *ftpState = data;
     if (ftpState->data.fd >= 0) {
        comm_close(ftpState->data.fd);
        ftpState->data.fd = -1;