]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
add fake return(0) for gcc -Wall
authorwessels <>
Fri, 23 Feb 1996 14:00:57 +0000 (14:00 +0000)
committerwessels <>
Fri, 23 Feb 1996 14:00:57 +0000 (14:00 +0000)
src/filemap.cc
src/ftp.cc

index 6eae757cc848acf7092c62119707db4f1c2a939d..24c66921bcaaf0097ffda77e59c5b59d896d80d6 100644 (file)
@@ -204,7 +204,7 @@ int file_map_allocate(suggestion)
     debug(0, "file_map_allocate: All %d files are in use!\n", fm->max_n_files);
     debug(0, "You need to recompile with a larger value for MAX_SWAP_FILE\n");
     fatal_dump(NULL);
-    /* NOTREACHED */
+    return (0); /* NOTREACHED */
 }
 
 #ifdef TEST
index 2f7df431c1f15608414aa0a51b77b800f26b76f1..7f31c3cdf8be3ccf650386416cc10d2467880140 100644 (file)
@@ -1,4 +1,4 @@
-static char rcsid[] = "$Id: ftp.cc,v 1.3 1996/02/23 06:56:31 wessels Exp $";
+static char rcsid[] = "$Id: ftp.cc,v 1.4 1996/02/23 07:00:58 wessels Exp $";
 /* 
  *  File:         ftp.c
  *  Description:  state machine for ftp retrieval protocol.  Based on John's
@@ -653,7 +653,7 @@ static int ftp_open_pipe(p1, p2, p3, p4, p5, type, cpid, opts)
     execvp(p1, argv);
     perror(p1);
     _exit(1);
-    /* NOTREACHED */
+    return (0); /* NOTREACHED */
 }
 
 /*