summaryrefslogtreecommitdiff
path: root/src/socket_base.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/socket_base.cpp
parent940c5b346b35f2d42360b3371757eb98ef8ba78f (diff)
Fixed warnings on Win64
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/socket_base.cpp')
-rw-r--r--src/socket_base.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/socket_base.cpp b/src/socket_base.cpp
index 593ff66..4209a69 100644
--- a/src/socket_base.cpp
+++ b/src/socket_base.cpp
@@ -776,7 +776,7 @@ void zmq::socket_base_t::process_term (int linger_)
// Ask all attached pipes to terminate.
for (pipes_t::size_type i = 0; i != pipes.size (); ++i)
pipes [i]->terminate (false);
- register_term_acks (pipes.size ());
+ register_term_acks ((int) pipes.size ());
// Continue the termination process immediately.
own_t::process_term (linger_);