]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fixed one more type conversion error in r15057.
authorAlex Rousskov <rousskov@measurement-factory.com>
Mon, 20 Feb 2017 22:23:02 +0000 (15:23 -0700)
committerAlex Rousskov <rousskov@measurement-factory.com>
Mon, 20 Feb 2017 22:23:02 +0000 (15:23 -0700)
src/client_db.cc

index 3ff5a5690e6fb6a77d9d97fcf2c2c3b5d291bd3a..4038075ff4f42313ee338e3c95cf746e80c8cd9a 100644 (file)
@@ -440,7 +440,7 @@ client_entry(Ip::Address *current)
         }
     }
 
-    ClientInfo *c = reinterpret_cast<ClientInfo *>(hash_next(client_table));
+    ClientInfo *c = static_cast<ClientInfo *>(hash_next(client_table));
 
     hash_last(client_table);