Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Compress/Lzh/LzhDecoder.cpp')
-rwxr-xr-x7zip/Compress/Lzh/LzhDecoder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/7zip/Compress/Lzh/LzhDecoder.cpp b/7zip/Compress/Lzh/LzhDecoder.cpp
index e3988a75..846a4163 100755
--- a/7zip/Compress/Lzh/LzhDecoder.cpp
+++ b/7zip/Compress/Lzh/LzhDecoder.cpp
@@ -126,7 +126,7 @@ HRESULT CCoder::ReadCTable()
}
}
else
- lens[i++] = c - 2;
+ lens[i++] = (Byte)(c - 2);
}
while (i < kNumCSymbols)
lens[i++] = 0;
@@ -136,7 +136,7 @@ HRESULT CCoder::ReadCTable()
}
STDMETHODIMP CCoder::CodeReal(ISequentialInStream *inStream,
- ISequentialOutStream *outStream, const UInt64 *inSize, const UInt64 *outSize,
+ ISequentialOutStream *outStream, const UInt64 * /* inSize */, const UInt64 *outSize,
ICompressProgressInfo *progress)
{
if (outSize == NULL)