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:
parent
7647715dac
commit
691dc75401
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue