From 49df2f416cd43e9e18f3dbd964271c5cca835729 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Sun, 15 May 2011 13:12:09 +0200 Subject: Fixes warning when compiling with MSVC on Win64 Signed-off-by: Martin Sustrik --- src/dist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dist.cpp') diff --git a/src/dist.cpp b/src/dist.cpp index c15ab6b..7c15bfd 100644 --- a/src/dist.cpp +++ b/src/dist.cpp @@ -69,7 +69,7 @@ void zmq::dist_t::terminate () zmq_assert (!terminating); terminating = true; - sink->register_term_acks (pipes.size ()); + sink->register_term_acks ((int) pipes.size ()); for (pipes_t::size_type i = 0; i != pipes.size (); i++) pipes [i]->terminate (); } -- cgit v1.2.3