summaryrefslogtreecommitdiff
path: root/src/dist.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-09-01 07:26:17 +0200
committerMartin Sustrik <sustrik@250bpm.com>2011-09-01 07:26:17 +0200
commit65bb75863dde3ecd9a19d7fafc1ad1b0166a4770 (patch)
tree54dac9e92463dd6601f4c7d3827fe6999a89d247 /src/dist.cpp
parent940c5b346b35f2d42360b3371757eb98ef8ba78f (diff)
Fixed warnings on Win64
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/dist.cpp')
-rw-r--r--src/dist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dist.cpp b/src/dist.cpp
index e088e5e..23e790d 100644
--- a/src/dist.cpp
+++ b/src/dist.cpp
@@ -139,7 +139,7 @@ void zmq::dist_t::distribute (msg_t *msg_, int flags_)
// Add matching-1 references to the message. We already hold one reference,
// that's why -1.
- msg_->add_refs (matching - 1);
+ msg_->add_refs ((int) matching - 1);
// Push copy of the message to each matching pipe.
for (pipes_t::size_type i = 0; i < matching;) {