Unverified Commit 15fd9abf authored by Marcel Raad's avatar Marcel Raad
Browse files

easy: fix another "clarify calculation precedence" warning

I missed this one in commit 6b3dde7f.
parent 6b3dde7f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
    }