aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/hiperfifo.c
diff options
context:
space:
mode:
authorMarcel Raad <Marcel.Raad@teamviewer.com>2019-05-21 11:25:42 +0200
committerMarcel Raad <Marcel.Raad@teamviewer.com>2019-05-22 10:06:33 +0200
commit159ea554afb69f429098b0b5e7aa841149e93f2d (patch)
tree5260fe1276cac531c33d07f272e392b342bcc4e0 /docs/examples/hiperfifo.c
parentacb097ca7f2ac6304bc664dd9154114fd27bffca (diff)
examples: fix "clarify calculation precedence" warnings
Closes https://github.com/curl/curl/pull/3919
Diffstat (limited to 'docs/examples/hiperfifo.c')
-rw-r--r--docs/examples/hiperfifo.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/examples/hiperfifo.c b/docs/examples/hiperfifo.c
index d1228f829..a50522a8e 100644
--- a/docs/examples/hiperfifo.c
+++ b/docs/examples/hiperfifo.c
@@ -202,8 +202,8 @@ static void event_cb(int fd, short kind, void *userp)
CURLMcode rc;
int action =
- (kind & EV_READ ? CURL_CSELECT_IN : 0) |
- (kind & EV_WRITE ? CURL_CSELECT_OUT : 0);
+ ((kind & EV_READ) ? CURL_CSELECT_IN : 0) |
+ ((kind & EV_WRITE) ? CURL_CSELECT_OUT : 0);
rc = curl_multi_socket_action(g->multi, fd, action, &g->still_running);
mcode_or_die("event_cb: curl_multi_socket_action", rc);
@@ -249,7 +249,8 @@ static void setsock(SockInfo *f, curl_socket_t s, CURL *e, int act,
GlobalInfo *g)
{
int kind =
- (act&CURL_POLL_IN?EV_READ:0)|(act&CURL_POLL_OUT?EV_WRITE:0)|EV_PERSIST;
+ ((act & CURL_POLL_IN) ? EV_READ : 0) |
+ ((act & CURL_POLL_OUT) ? EV_WRITE : 0) | EV_PERSIST;
f->sockfd = s;
f->action = act;