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/rep.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rep.cpp') diff --git a/src/rep.cpp b/src/rep.cpp index a5d1462..ee67186 100644 --- a/src/rep.cpp +++ b/src/rep.cpp @@ -42,7 +42,7 @@ int zmq::rep_t::xsend (msg_t *msg_, int flags_) return -1; } - bool more = msg_->flags () & (msg_t::more | msg_t::label); + bool more = msg_->flags () & (msg_t::more | msg_t::label) ? true : false; // Push message to the reply pipe. int rc = xrep_t::xsend (msg_, flags_); -- cgit v1.2.3