mirror of
https://github.com/curl/curl.git
synced 2026-07-23 03:07:15 +03:00
attempt to silence the MIPSPro compiler warning
This commit is contained in:
parent
17bf5ac2fc
commit
48f56d9600
1 changed files with 2 additions and 2 deletions
|
|
@ -1088,8 +1088,8 @@ static void singlesocket(struct Curl_multi *multi,
|
|||
continue;
|
||||
}
|
||||
|
||||
action = (current.action & GETSOCK_READSOCK(i)?CURL_POLL_IN:0) |
|
||||
(current.action & GETSOCK_WRITESOCK(i)?CURL_POLL_OUT:0);
|
||||
action = ((current.action & GETSOCK_READSOCK(i))?CURL_POLL_IN:0) |
|
||||
((current.action & GETSOCK_WRITESOCK(i))?CURL_POLL_OUT:0);
|
||||
}
|
||||
|
||||
/* call the callback with this new info */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue