From 16a0a58b91fa1a5f5c26f29155744b3f7043ba70 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 19 Nov 2017 00:49:47 -0500 Subject: [PATCH] VolumeGC: Correct printf specifier in LoadBannerFile() Gets rid of a warning when compiling on macOS. --- Source/Core/DiscIO/VolumeGC.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DiscIO/VolumeGC.cpp b/Source/Core/DiscIO/VolumeGC.cpp index 78e2dd2f63..64c0daefca 100644 --- a/Source/Core/DiscIO/VolumeGC.cpp +++ b/Source/Core/DiscIO/VolumeGC.cpp @@ -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 {}; }