Skip to content
Permalink
Browse files
Merge pull request #6200 from lioncash/discio-warn
VolumeGC: Correct printf specifier in LoadBannerFile()
  • Loading branch information
JosJuice committed Nov 19, 2017
2 parents 9b100c6 + 16a0a58 commit 7372bb0
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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 {};
}

0 comments on commit 7372bb0

Please sign in to comment.