VolumeGC: Correct printf specifier in LoadBannerFile()

Gets rid of a warning when compiling on macOS.
This commit is contained in:
Lioncash 2017-11-19 00:49:47 -05:00
parent 9b100c6112
commit 16a0a58b91

View File

@ -215,7 +215,7 @@ VolumeGC::ConvertedGCBanner VolumeGC::LoadBannerFile() const
}
else
{
WARN_LOG(DISCIO, "Invalid opening.bnr. Type: %0x Size: %0zx", banner_file.id, file_size);
WARN_LOG(DISCIO, "Invalid opening.bnr. Type: %0x Size: %0" PRIx64, banner_file.id, file_size);
return {};
}