summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/DiscScrubber.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-01-04 19:56:39 -0500
committerLioncash <mathew1800@gmail.com>2017-01-04 19:56:39 -0500
commit6ff21c48cba204b6392eb622ede213e4389cb3a9 (patch)
tree316e94d419454858a23821e3da2036429e899ebf /Source/Core/DiscIO/DiscScrubber.cpp
parentb1a2dec78af6e2bc99ebbc8c0ade50dbf8ac6f0e (diff)
DiscScrubber: Correct printf specifiers
Diffstat (limited to 'Source/Core/DiscIO/DiscScrubber.cpp')
-rw-r--r--Source/Core/DiscIO/DiscScrubber.cpp4
1 files 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<IFileSystem> 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;
}