From: wessels <> Date: Mon, 21 Sep 1998 13:01:26 +0000 (+0000) Subject: compiler warning X-Git-Tag: SQUID_3_0_PRE1~2679 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7b916944f77e906543e2da8a1275850bd98cddbb;p=thirdparty%2Fsquid.git compiler warning --- diff --git a/src/store.cc b/src/store.cc index 046a9da6ee..015a295546 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.463 1998/09/21 06:52:22 wessels Exp $ + * $Id: store.cc,v 1.464 1998/09/21 07:01:26 wessels Exp $ * * DEBUG: section 20 Storage Manager * AUTHOR: Harvest Derived @@ -282,7 +282,7 @@ storeGet(const cache_key * key) StoreEntry * storeGetPublic(const char *uri, const method_t method) { - cache_key *key; + const cache_key *key; StoreEntry *e; key = storeKeyPublic(uri, method); e = storeGet(key);