From 715a0bcce3316a3785eb41a5080853120f9e1f41 Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou Date: Tue, 4 Jan 2022 12:06:35 +0200 Subject: Fix typos (PR# 1099) --- queue.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'queue.cpp') 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(); } -- cgit v1.2.1