diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2011-05-15 13:12:09 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2011-05-15 13:12:09 +0200 |
commit | 49df2f416cd43e9e18f3dbd964271c5cca835729 (patch) | |
tree | 815d659e54170a47fd812bc55bbda6b9f0ec7581 /src/own.cpp | |
parent | 49387874efe790713f4a090e03a97212f4889163 (diff) |
Fixes warning when compiling with MSVC on Win64
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/own.cpp')
-rw-r--r-- | src/own.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/own.cpp b/src/own.cpp index 57e183a..4cbfdd6 100644 --- a/src/own.cpp +++ b/src/own.cpp @@ -161,7 +161,7 @@ void zmq::own_t::process_term (int linger_) // Send termination request to all owned objects. for (owned_t::iterator it = owned.begin (); it != owned.end (); ++it) send_term (*it, linger_); - register_term_acks (owned.size ()); + register_term_acks ((int) owned.size ()); owned.clear (); // Start termination process and check whether by chance we cannot |