1
0

Type warning fixes.

This commit is contained in:
Mattes D
2014-08-25 18:25:39 +03:00
parent 8f20c359cd
commit bf16c5ed92
2 changed files with 2 additions and 2 deletions

View File

@@ -675,7 +675,7 @@ void cMojangAPI::CacheNamesToUUIDs(const AStringVector & a_PlayerNames)
// Also cache the UUIDToName:
{
cCSLock Lock(m_CSUUIDToName);
for (size_t idx = 0; idx < JsonCount; ++idx)
for (Json::Value::UInt idx = 0; idx < JsonCount; ++idx)
{
Json::Value & Val = root[idx];
AString JsonName = Val.get("name", "").asString();