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/Deflate/DeflateDecoder.cpp')
-rwxr-xr-x7zip/Compress/Deflate/DeflateDecoder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/7zip/Compress/Deflate/DeflateDecoder.cpp b/7zip/Compress/Deflate/DeflateDecoder.cpp
index 78a4e47f..0de5534b 100755
--- a/7zip/Compress/Deflate/DeflateDecoder.cpp
+++ b/7zip/Compress/Deflate/DeflateDecoder.cpp
@@ -241,7 +241,7 @@ HRESULT CCoder::CodeReal(ISequentialInStream *inStream,
CCoderReleaser flusher(this);
const UInt64 start = m_OutWindowStream.GetProcessedSize();
- while(true)
+ for (;;)
{
UInt32 curSize = 1 << 18;
if (outSize != 0)
@@ -311,7 +311,7 @@ STDMETHODIMP CCoder::ReleaseInStream()
return S_OK;
}
-STDMETHODIMP CCoder::SetOutStreamSize(const UInt64 *outSize)
+STDMETHODIMP CCoder::SetOutStreamSize(const UInt64 * /* outSize */)
{
_remainLen = kLenIdNeedInit;
m_OutWindowStream.Init(_keepHistory);