From: Alex Rousskov Date: Mon, 20 Feb 2017 22:23:02 +0000 (-0700) Subject: Fixed one more type conversion error in r15057. X-Git-Tag: M-staged-PR71~254 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0d5a3c3f51d2322863622825f94518081e1e7035;p=thirdparty%2Fsquid.git Fixed one more type conversion error in r15057. --- diff --git a/src/client_db.cc b/src/client_db.cc index 3ff5a5690e..4038075ff4 100644 --- a/src/client_db.cc +++ b/src/client_db.cc @@ -440,7 +440,7 @@ client_entry(Ip::Address *current) } } - ClientInfo *c = reinterpret_cast(hash_next(client_table)); + ClientInfo *c = static_cast(hash_next(client_table)); hash_last(client_table);