1
0

Fixed more Format issues

This commit is contained in:
Tycho
2014-03-11 14:43:14 -07:00
parent 16b27c4b7a
commit 7e6ee7ef81
6 changed files with 17 additions and 17 deletions

View File

@@ -459,7 +459,7 @@ bool cByteBuffer::ReadVarUTF8String(AString & a_Value)
}
if (Size > MAX_STRING_SIZE)
{
LOGWARNING("%s: String too large: %llu (%llu KiB)", __FUNCTION__, Size, Size / 1024);
LOGWARNING("%s: String too large: %u (%u KiB)", __FUNCTION__, Size, Size / 1024);
}
return ReadString(a_Value, (int)Size);
}