mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-12-12 17:53:07 +00:00
[Client] Fix comparison between signed and unsigned integer expressions
This commit is contained in:
parent
01bdbfecfb
commit
ccae9590cc
1 changed files with 1 additions and 1 deletions
|
|
@ -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]);
|
||||
|
|
|
|||
Loading…
Reference in a new issue