Merge pull request #6200 from lioncash/discio-warn

VolumeGC: Correct printf specifier in LoadBannerFile()
This commit is contained in:
JosJuice
2017-11-19 08:43:32 +01:00
committed by GitHub

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 {};
}