Core/Battle.net: Fix "comparison of integers of different signs" warning

This commit is contained in:
Naios
2015-10-12 02:28:52 +02:00
parent ee2b43e368
commit 40e1fc0670

View File

@@ -44,7 +44,7 @@ namespace AuthHelper
RealmBuildInfo const* GetBuildInfo(int build)
{
for (int32 i = 0; i < ClientBuilds.size(); ++i)
for (std::size_t i = 0; i < ClientBuilds.size(); ++i)
if (ClientBuilds[i].Build == build)
return &ClientBuilds[i];