Warning fix.

This commit is contained in:
Unknown W. Brackets 2014-11-01 00:28:39 -07:00
parent f687613d68
commit 9511fd81f1

View file

@ -293,7 +293,7 @@ bool CISOFileBlockDevice::ReadBlock(int blockNumber, u8 *outPtr)
}
if (z.total_out != frameSize)
{
ERROR_LOG(LOADER, "block %d: block size error %d != %d\n", blockNumber, z.total_out, frameSize);
ERROR_LOG(LOADER, "block %d: block size error %d != %d\n", blockNumber, (u32)z.total_out, frameSize);
inflateEnd(&z);
memset(outPtr, 0, GetBlockSize());
return false;