From 770d0bc77cd1579a1cba33ba1eb3f06839c28c16 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Thu, 23 Jun 2011 08:51:48 +0200 Subject: Fix MSVC build Signed-off-by: Martin Sustrik --- src/req.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/req.cpp') diff --git a/src/req.cpp b/src/req.cpp index e51b853..e0e3321 100644 --- a/src/req.cpp +++ b/src/req.cpp @@ -65,7 +65,7 @@ int zmq::req_t::xsend (msg_t *msg_, int flags_) message_begins = false; } - bool more = msg_->flags () & (msg_t::more | msg_t::label); + bool more = msg_->flags () & (msg_t::more | msg_t::label) ? true : false; int rc = xreq_t::xsend (msg_, flags_); if (rc != 0) -- cgit v1.2.3