From 1f17d02dd42a6a723b80af8cee56c322ecc898a2 Mon Sep 17 00:00:00 2001 From: Michi Henning Date: Fri, 14 Jan 2005 07:00:50 +0000 Subject: Got rid of signed/unsigned compiler warning from gcc. --- cpp/src/IcePatch2/ClientUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src/IcePatch2/ClientUtil.cpp') diff --git a/cpp/src/IcePatch2/ClientUtil.cpp b/cpp/src/IcePatch2/ClientUtil.cpp index eff7f71b2f2..42ac384b4ef 100755 --- a/cpp/src/IcePatch2/ClientUtil.cpp +++ b/cpp/src/IcePatch2/ClientUtil.cpp @@ -326,7 +326,7 @@ IcePatch2::Patcher::prepare() } ByteSeqSeq checksumSeq = _serverCompress->getChecksumSeq(); - if(checksumSeq.size() != NumPartitions) + if(static_cast(checksumSeq.size()) != NumPartitions) { throw string("server returned illegal value"); } -- cgit v1.2.3