mirror of
https://github.com/curl/curl.git
synced 2026-07-16 00:27:18 +03:00
easy: fix another "clarify calculation precedence" warning
I missed this one in commit 6b3dde7fe6.
This commit is contained in:
parent
6b3dde7fe6
commit
15fd9abfea
1 changed files with 2 additions and 2 deletions
|
|
@ -427,8 +427,8 @@ static int events_socket(struct Curl_easy *easy, /* easy handle */
|
|||
mask. Convert from libcurl bitmask to the poll one. */
|
||||
m->socket.events = socketcb2poll(what);
|
||||
infof(easy, "socket cb: socket %d UPDATED as %s%s\n", s,
|
||||
what&CURL_POLL_IN?"IN":"",
|
||||
what&CURL_POLL_OUT?"OUT":"");
|
||||
(what&CURL_POLL_IN)?"IN":"",
|
||||
(what&CURL_POLL_OUT)?"OUT":"");
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue