From 98aba8f6380e0efdc693626cc6f6061b6ffe3c85 Mon Sep 17 00:00:00 2001 From: Martijn Otto Date: Thu, 31 Jul 2014 10:16:55 +0200 Subject: [PATCH] Fix for issue #12 --- src/channelimpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/channelimpl.cpp b/src/channelimpl.cpp index 0f6171d..18ceac3 100644 --- a/src/channelimpl.cpp +++ b/src/channelimpl.cpp @@ -117,7 +117,7 @@ Deferred &ChannelImpl::push(Deferred *deferred) Deferred &ChannelImpl::push(const Frame &frame) { // send the frame, and push the result - return push(new Deferred(send(frame))); + return push(new Deferred(!send(frame))); } /**