prevent signed/unsigned warnings
This commit is contained in:
parent
3d8338b0d4
commit
ecc6c1f501
@ -496,8 +496,8 @@ CURLMcode curl_multi_fdset(CURLM *multi_handle,
|
|||||||
/* this socket is unused, break out of loop */
|
/* this socket is unused, break out of loop */
|
||||||
break;
|
break;
|
||||||
else {
|
else {
|
||||||
if(s > this_max_fd)
|
if(s > (curl_socket_t)this_max_fd)
|
||||||
this_max_fd = s;
|
this_max_fd = (int)s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user