summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/StreamManagement/StanzaAckRequester.cpp')
-rw-r--r--Swiften/StreamManagement/StanzaAckRequester.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/StreamManagement/StanzaAckRequester.cpp b/Swiften/StreamManagement/StanzaAckRequester.cpp
index a0f5b70..c71803a 100644
--- a/Swiften/StreamManagement/StanzaAckRequester.cpp
+++ b/Swiften/StreamManagement/StanzaAckRequester.cpp
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2010-2018 Isode Limited. 2 * Copyright (c) 2010-2019 Isode Limited.
3 * All rights reserved. 3 * All rights reserved.
4 * See the COPYING file for more information. 4 * See the COPYING file for more information.
5 */ 5 */
@@ -28,7 +28,7 @@ void StanzaAckRequester::handleAckReceived(unsigned int handledStanzasCount) {
28 unsigned int i = lastHandledStanzasCount; 28 unsigned int i = lastHandledStanzasCount;
29 while (i != handledStanzasCount) { 29 while (i != handledStanzasCount) {
30 if (unackedStanzas.empty()) { 30 if (unackedStanzas.empty()) {
31 SWIFT_LOG(warning) << "Server acked more stanzas than we sent" << std::endl; 31 SWIFT_LOG(warning) << "Server acked more stanzas than we sent";
32 break; 32 break;
33 } 33 }
34 std::shared_ptr<Stanza> ackedStanza = unackedStanzas.front(); 34 std::shared_ptr<Stanza> ackedStanza = unackedStanzas.front();