]> git.ipfire.org Git - thirdparty/squid.git/commit - src/log/TcpLogger.cc
Fix pointless comparison of unsigned integer with zero in rev.12805
authorAmos Jeffries <squid3@treenet.co.nz>
Mon, 13 May 2013 14:44:59 +0000 (08:44 -0600)
committerAmos Jeffries <squid3@treenet.co.nz>
Mon, 13 May 2013 14:44:59 +0000 (08:44 -0600)
commit16b1fd57f9a6656077195f3ac990a61f85382be5
treee2b4a94c001ac13830444a2f9fc6eb656f9b7bd2
parent0de73a382e44901d386d8e35d076cfe747945495
Fix pointless comparison of unsigned integer with zero in rev.12805

CommIoCbParams::size and local variable writtenSize are both size_t
which is unsigned and cannot be less than 0.

This produces compiler warnings/errors in ICC.
src/log/TcpLogger.cc