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/Arj/ArjDecoder2.cpp')
-rwxr-xr-x7zip/Compress/Arj/ArjDecoder2.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/7zip/Compress/Arj/ArjDecoder2.cpp b/7zip/Compress/Arj/ArjDecoder2.cpp
index 1fb20649..a734d1b4 100755
--- a/7zip/Compress/Arj/ArjDecoder2.cpp
+++ b/7zip/Compress/Arj/ArjDecoder2.cpp
@@ -13,8 +13,8 @@ static const UInt32 kMatchMaxLen = 256;
static const UInt32 kMatchMinLen = 3;
STDMETHODIMP CCoder::CodeReal(ISequentialInStream *inStream,
- ISequentialOutStream *outStream, const UInt64 *inSize, const UInt64 *outSize,
- ICompressProgressInfo *progress)
+ ISequentialOutStream *outStream, const UInt64 * /* inSize */, const UInt64 *outSize,
+ ICompressProgressInfo * /* progress */)
{
if (outSize == NULL)
return E_INVALIDARG;
@@ -49,7 +49,7 @@ STDMETHODIMP CCoder::CodeReal(ISequentialInStream *inStream,
len += m_InBitStream.ReadBits(width);
if (len == 0)
{
- m_OutWindowStream.PutByte(m_InBitStream.ReadBits(8));
+ m_OutWindowStream.PutByte((Byte)m_InBitStream.ReadBits(8));
pos++;
continue;
}