1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 18:19:55 +00:00

[Browser] Fix sign compare warnings

This commit is contained in:
Koncord 2017-03-30 00:39:01 +08:00
parent 7647715dac
commit 691dc75401

View file

@ -131,14 +131,14 @@ ServerExtendedData getExtendedData(const char *addr, unsigned short port)
bs.IgnoreBytes(1);
size_t length = 0;
bs.Read(length);
for(int i = 0; i < length; i++)
for(size_t i = 0; i < length; i++)
{
RakNet::RakString str;
bs.Read(str);
data.players.push_back(str.C_String());
}
bs.Read(length);
for(int i = 0; i < length; i++)
for(size_t i = 0; i < length; i++)
{
RakNet::RakString str;
bs.Read(str);