Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
65bb7586
Commit
65bb7586
authored
Sep 01, 2011
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed warnings on Win64
Signed-off-by:
Martin Sustrik
<
sustrik@250bpm.com
>
parent
940c5b34
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
dist.cpp
src/dist.cpp
+1
-1
socket_base.cpp
src/socket_base.cpp
+1
-1
No files found.
src/dist.cpp
View file @
65bb7586
...
...
@@ -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
;)
{
...
...
src/socket_base.cpp
View file @
65bb7586
...
...
@@ -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_
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment