1
0
Fork 0

Fixed a type warning.

This commit is contained in:
Mattes D 2014-08-25 07:28:45 +02:00
parent d07134e621
commit 8f20c359cd
1 changed files with 2 additions and 2 deletions

View File

@ -655,11 +655,11 @@ void cMojangAPI::CacheNamesToUUIDs(const AStringVector & a_PlayerNames)
}
// Store the returned results into cache:
size_t JsonCount = root.size();
Json::Value::UInt JsonCount = root.size();
Int64 Now = time(NULL);
{
cCSLock Lock(m_CSNameToUUID);
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();