From: wessels <> Date: Fri, 23 Feb 1996 14:00:57 +0000 (+0000) Subject: add fake return(0) for gcc -Wall X-Git-Tag: SQUID_3_0_PRE1~6424 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=add2f595963ae2d09cc90adf7b9c963632300f05;p=thirdparty%2Fsquid.git add fake return(0) for gcc -Wall --- diff --git a/src/filemap.cc b/src/filemap.cc index 6eae757cc8..24c66921bc 100644 --- a/src/filemap.cc +++ b/src/filemap.cc @@ -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 diff --git a/src/ftp.cc b/src/ftp.cc index 2f7df431c1..7f31c3cdf8 100644 --- a/src/ftp.cc +++ b/src/ftp.cc @@ -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 */ } /*