From 6ff21c48cba204b6392eb622ede213e4389cb3a9 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 4 Jan 2017 19:56:39 -0500 Subject: [PATCH] DiscScrubber: Correct printf specifiers --- Source/Core/DiscIO/DiscScrubber.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DiscIO/DiscScrubber.cpp b/Source/Core/DiscIO/DiscScrubber.cpp index f3f8c6075f..c41e402b28 100644 --- a/Source/Core/DiscIO/DiscScrubber.cpp +++ b/Source/Core/DiscIO/DiscScrubber.cpp @@ -32,7 +32,7 @@ bool DiscScrubber::SetupScrub(const std::string& filename, int block_size) if (CLUSTER_SIZE % m_block_size != 0) { - ERROR_LOG(DISCIO, "Block size %i is not a factor of 0x8000, scrubbing not possible", + ERROR_LOG(DISCIO, "Block size %u is not a factor of 0x8000, scrubbing not possible", m_block_size); return false; } @@ -219,7 +219,7 @@ bool DiscScrubber::ParsePartitionData(Partition& partition) std::unique_ptr filesystem(CreateFileSystem(m_disc.get())); if (!filesystem) { - ERROR_LOG(DISCIO, "Failed to create filesystem for group %d partition %u", + ERROR_LOG(DISCIO, "Failed to create filesystem for group %u partition %u", partition.group_number, partition.number); parsed_ok = false; }