VolumeGC: Correct printf specifier in LoadBannerFile()
Gets rid of a warning when compiling on macOS.
This commit is contained in:
parent
9b100c6112
commit
16a0a58b91
|
@ -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 {};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue