summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2015-12-17 19:47:37 (GMT)
committerTobias Markmann <tm@ayena.de>2015-12-17 19:47:37 (GMT)
commit6c63910aa1016f06113fd562c8ffebfa6b4241b2 (patch)
treec75911df794454dc0a727c865f8d46fd9bf5075d
parent523dbfb769069663eda19e381ad35f466b1ef27c (diff)
downloadswift-6c63910aa1016f06113fd562c8ffebfa6b4241b2.zip
swift-6c63910aa1016f06113fd562c8ffebfa6b4241b2.tar.bz2
Fix misspelled method call
Test-Information: Builds and tests pass. Change-Id: I7c12036903ea535fe0a7ee7085b2268894c546bd
-rw-r--r--Swiften/EventLoop/BoostASIOEventLoop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/EventLoop/BoostASIOEventLoop.cpp b/Swiften/EventLoop/BoostASIOEventLoop.cpp
index f3c5618..1574434 100644
--- a/Swiften/EventLoop/BoostASIOEventLoop.cpp
+++ b/Swiften/EventLoop/BoostASIOEventLoop.cpp
@@ -23,7 +23,7 @@ void BoostASIOEventLoop::handleASIOEvent() {
boost::recursive_mutex::scoped_lock lock(isEventInASIOEventLoopMutex_);
isEventInASIOEventLoop_ = false;
}
- handleNextEvent();
+ handleNextEvents();
}
void BoostASIOEventLoop::eventPosted() {