summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Src/CompressedBlob.cpp
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2010-12-05 04:07:44 +0000
committerShawn Hoffman <godisgovernment@gmail.com>2010-12-05 04:07:44 +0000
commit3e4aa2060185d6122b838d166a3c3cb254ba8844 (patch)
treed6b5f3265bda3145f2d8a5dd99c0caee0683f2ad /Source/Core/DiscIO/Src/CompressedBlob.cpp
parent6df84ddc31262ac5267fc984609ae0a84cd7a040 (diff)
fix a crash that could occur in CompressedBlob.cpp
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6521 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO/Src/CompressedBlob.cpp')
-rw-r--r--Source/Core/DiscIO/Src/CompressedBlob.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Src/CompressedBlob.cpp b/Source/Core/DiscIO/Src/CompressedBlob.cpp
index ba29cccddf..da6e0a2b26 100644
--- a/Source/Core/DiscIO/Src/CompressedBlob.cpp
+++ b/Source/Core/DiscIO/Src/CompressedBlob.cpp
@@ -117,7 +117,7 @@ void CompressedBlobReader::GetBlock(u64 block_num, u8 *out_ptr)
// First, check hash.
u32 block_hash = HashAdler32(source, comp_block_size);
if (block_hash != hashes[block_num])
- PanicAlert("Hash of block %i is %08x instead of %08x.\n"
+ PanicAlert("Hash of block %lli is %08x instead of %08x.\n"
"Your ISO, %s, is corrupt.",
block_num, block_hash, hashes[block_num],
file_name.c_str());