From: hno <> Date: Sun, 17 Dec 2000 15:54:02 +0000 (+0000) Subject: Return NULL after fatal() to keep GCC happy. X-Git-Tag: SQUID_3_0_PRE1~1729 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f3a32abd05cc0fd38b82ad732b752b8be7bba400;p=thirdparty%2Fsquid.git Return NULL after fatal() to keep GCC happy. --- diff --git a/src/store.cc b/src/store.cc index 1d60b77068..3d81aa6f40 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.533 2000/12/05 09:18:36 wessels Exp $ + * $Id: store.cc,v 1.534 2000/12/17 08:54:02 hno Exp $ * * DEBUG: section 20 Storage Manager * AUTHOR: Harvest Derived @@ -1296,7 +1296,7 @@ createRemovalPolicy(RemovalPolicySettings * settings) debug(20, 1) ("ERROR: Be sure to have set cache_replacement_policy\n"); debug(20, 1) ("ERROR: and memory_replacement_policy in squid.conf!\n"); fatalf("ERROR: Unknown policy %s\n", settings->type); - /* NOTREACHED */ + return NULL; /* NOTREACHED */ } #if 0