diff options
| author | Glenn Rice <glennricster@gmail.com> | 2013-01-31 15:29:29 -0600 |
|---|---|---|
| committer | Glenn Rice <glennricster@gmail.com> | 2013-01-31 15:29:29 -0600 |
| commit | f7fa33f2d618206e6388cc023d17ceb6a04d6af2 (patch) | |
| tree | d150ad01bb5df2634419a494b5426d79ec2ebb79 /Source/Core/DiscIO/Src/CompressedBlob.cpp | |
| parent | 0ffdd2607f4ce56e4a35e959d1f5adcc07959320 (diff) | |
Fix remaining compiler warnings.
Diffstat (limited to 'Source/Core/DiscIO/Src/CompressedBlob.cpp')
| -rw-r--r-- | Source/Core/DiscIO/Src/CompressedBlob.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Src/CompressedBlob.cpp b/Source/Core/DiscIO/Src/CompressedBlob.cpp index 48ce8f10f3..c4b1aa1385 100644 --- a/Source/Core/DiscIO/Src/CompressedBlob.cpp +++ b/Source/Core/DiscIO/Src/CompressedBlob.cpp @@ -222,7 +222,7 @@ bool CompressFileToBlob(const char* infile, const char* outfile, u32 sub_type, // u64 size = header.block_size; std::fill(in_buf, in_buf + header.block_size, 0); if (scrubbing) - DiscScrubber::GetNextBlock(inf.GetHandle(), in_buf); + DiscScrubber::GetNextBlock(inf, in_buf); else inf.ReadBytes(in_buf, header.block_size); z_stream z; |
