Get rid of some casts used with logging for size_t

Replaces them with the now-valid %z specifiers
This commit is contained in:
Lioncash
2015-09-28 07:49:15 -04:00
parent ba96ca289d
commit 311c76647d
6 changed files with 26 additions and 26 deletions

View File

@ -788,7 +788,7 @@ bool RunCode(const ARCode &arcode)
current_code = &arcode;
LogInfo("Code Name: %s", arcode.name.c_str());
LogInfo("Number of codes: %i", arcode.ops.size());
LogInfo("Number of codes: %zu", arcode.ops.size());
for (const AREntry& entry : arcode.ops)
{