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 'CPP/7zip/Common/MSBFDecoder.h')
-rwxr-xr-xCPP/7zip/Common/MSBFDecoder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/CPP/7zip/Common/MSBFDecoder.h b/CPP/7zip/Common/MSBFDecoder.h
index dc80c0f7..1894ca40 100755
--- a/CPP/7zip/Common/MSBFDecoder.h
+++ b/CPP/7zip/Common/MSBFDecoder.h
@@ -30,11 +30,11 @@ public:
void Init()
{
m_Stream.Init();
- m_BitPos = kNumBigValueBits;
+ m_BitPos = kNumBigValueBits;
Normalize();
}
- UInt64 GetProcessedSize() const
+ UInt64 GetProcessedSize() const
{ return m_Stream.GetProcessedSize() - (kNumBigValueBits - m_BitPos) / 8; }
UInt32 GetBitPosition() const { return (m_BitPos & 7); }