From ccae9590cc5f85b1249704196c9a090c89a514c2 Mon Sep 17 00:00:00 2001 From: Koncord Date: Wed, 3 May 2017 02:43:00 +0800 Subject: [PATCH] [Client] Fix comparison between signed and unsigned integer expressions --- apps/openmw/mwmp/Networking.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/openmw/mwmp/Networking.cpp b/apps/openmw/mwmp/Networking.cpp index b91046477..24b4015ab 100644 --- a/apps/openmw/mwmp/Networking.cpp +++ b/apps/openmw/mwmp/Networking.cpp @@ -86,7 +86,7 @@ string comparePlugins(PacketPreInit::PluginContainer checksums, PacketPreInit::P if(checksumsResponse[i].second.size() > 0) { if(full) - for(int j = 0; j < checksumsResponse[i].second.size(); j++) + for(size_t j = 0; j < checksumsResponse[i].second.size(); j++) printWithWidth(sstr, intToHexStr(checksumsResponse[i].second[j]), 14); else sstr << intToHexStr(checksumsResponse[i].second[0]);