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

@ -481,7 +481,7 @@ static void LoadFileStateData(const std::string& filename, std::vector<u8>& ret_
if (!f.ReadBytes(&buffer[0], size))
{
PanicAlert("wtf? reading bytes: %i", (int)size);
PanicAlert("wtf? reading bytes: %zu", size);
return;
}
}