summaryrefslogtreecommitdiff
path: root/queue.cpp
diff options
context:
space:
mode:
authorDimitris Apostolou <dimitris.apostolou@icloud.com>2022-01-04 12:06:35 +0200
committerGitHub <noreply@github.com>2022-01-04 05:06:35 -0500
commit715a0bcce3316a3785eb41a5080853120f9e1f41 (patch)
tree7ac00f38e562d8c2d113ca8a30f861c10476d228 /queue.cpp
parentd994989cda15fe92c10bd7638d98968b1dc17c05 (diff)
downloadcryptopp-git-715a0bcce3316a3785eb41a5080853120f9e1f41.tar.gz
Fix typos (PR# 1099)
Diffstat (limited to 'queue.cpp')
-rw-r--r--queue.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/queue.cpp b/queue.cpp
index bc149522..021e86a0 100644
--- a/queue.cpp
+++ b/queue.cpp
@@ -255,7 +255,7 @@ size_t ByteQueue::Put2(const byte *inString, size_t length, int messageEnd, bool
void ByteQueue::CleanupUsedNodes()
{
- // Test for m_head due to Enterprise Anlysis finding
+ // Test for m_head due to Enterprise Analysis finding
while (m_head && m_head != m_tail && m_head->UsedUp())
{
ByteQueueNode *temp=m_head;
@@ -263,7 +263,7 @@ void ByteQueue::CleanupUsedNodes()
delete temp;
}
- // Test for m_head due to Enterprise Anlysis finding
+ // Test for m_head due to Enterprise Analysis finding
if (m_head && m_head->CurrentSize() == 0)
m_head->Clear();
}