summaryrefslogtreecommitdiff
path: root/zdeflate.cpp
diff options
context:
space:
mode:
authorklemens <ka7@github.com>2016-12-27 18:34:57 +0100
committerklemens <ka7@github.com>2016-12-27 18:34:57 +0100
commit5a5c6330735798ed7670cfe1d28986d0a88fb6a9 (patch)
tree5c351b3fbc98cfeeb3d9c7fdd0fc926724223e30 /zdeflate.cpp
parent06f79d904d5d4a801910e31bcca2846e5afbeaff (diff)
downloadcryptopp-git-5a5c6330735798ed7670cfe1d28986d0a88fb6a9.tar.gz
spelling fixes
Diffstat (limited to 'zdeflate.cpp')
-rw-r--r--zdeflate.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zdeflate.cpp b/zdeflate.cpp
index b8ce89c3..e1554ec8 100644
--- a/zdeflate.cpp
+++ b/zdeflate.cpp
@@ -98,7 +98,7 @@ HuffmanEncoder::HuffmanEncoder(const unsigned int *codeBits, unsigned int nCodes
struct HuffmanNode
{
- // Coverity finding on uninitalized 'symbol' member
+ // Coverity finding on uninitialized 'symbol' member
HuffmanNode()
: symbol(0), parent(0) {}
HuffmanNode(const HuffmanNode& rhs)
@@ -300,7 +300,7 @@ void Deflator::Reset(bool forceReset)
m_detectCount = 1;
m_detectSkip = 0;
- // m_prev will be initialized automaticly in InsertString
+ // m_prev will be initialized automatically in InsertString
std::fill(m_head.begin(), m_head.end(), byte(0));
std::fill(m_literalCounts.begin(), m_literalCounts.end(), byte(0));