]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
"LruMap bug fix and other polishing touches" patch: fix compile error
authorChristos Tsantilas <chtsanti@users.sourceforge.net>
Thu, 16 May 2013 07:06:50 +0000 (10:06 +0300)
committerChristos Tsantilas <chtsanti@users.sourceforge.net>
Thu, 16 May 2013 07:06:50 +0000 (10:06 +0300)
src/base/LruMap.h

index 506b0e0bf2a10ab3ea6cb14b1f7a3e1da0bcda6e..39eb44c82d1132c26171b0a5eaf78cdc0b27bd07 100644 (file)
@@ -165,7 +165,7 @@ bool
 LruMap<EntryValue, EntryCost>::del(LruMap::MapIterator const &i)
 {
     if (i != storage.end()) {
-        LruMap::Entry *e = *i->second;
+        Entry *e = *i->second;
         index.erase(i->second);
         storage.erase(i);
         delete e;