summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/sys/windows/AsynchIO.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2009-09-22 15:59:53 +0000
committerAndrew Stitcher <astitcher@apache.org>2009-09-22 15:59:53 +0000
commit3d3fb015b49b088a6e1f641437cd6b7acb0ed6ec (patch)
tree92337ec015253d12f5ad045922592d791ae3f1a3 /cpp/src/qpid/sys/windows/AsynchIO.cpp
parent4551735283dd89c17529782305679a9ac744d31f (diff)
downloadqpid-python-3d3fb015b49b088a6e1f641437cd6b7acb0ed6ec.tar.gz
Make the AsynchIO API more consistent
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@817711 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/windows/AsynchIO.cpp')
-rw-r--r--cpp/src/qpid/sys/windows/AsynchIO.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/windows/AsynchIO.cpp b/cpp/src/qpid/sys/windows/AsynchIO.cpp
index 8905b87838..475b18600d 100644
--- a/cpp/src/qpid/sys/windows/AsynchIO.cpp
+++ b/cpp/src/qpid/sys/windows/AsynchIO.cpp
@@ -634,7 +634,7 @@ void AsynchIO::readComplete(AsynchReadResult *result) {
if (status == 0 && bytes > 0) {
bool restartRead = true; // May not if receiver doesn't want more
if (readCallback)
- restartRead = readCallback(*this, result->getBuff());
+ readCallback(*this, result->getBuff());
if (restartRead)
startReading();
}