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
commit 7372bb02b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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