]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
compiler warning
authorwessels <>
Mon, 21 Sep 1998 13:01:26 +0000 (13:01 +0000)
committerwessels <>
Mon, 21 Sep 1998 13:01:26 +0000 (13:01 +0000)
src/store.cc

index 046a9da6ee80e800f92ee18a94ee06879ebbc5d9..015a29554649a3b5aca2f3240f64f4e3aa8227b2 100644 (file)
@@ -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);