Skip to content
Snippets Groups Projects
Commit ecc6c1f5 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

prevent signed/unsigned warnings

parent 3d8338b0
No related branches found
No related tags found
No related merge requests found
......@@ -496,8 +496,8 @@ CURLMcode curl_multi_fdset(CURLM *multi_handle,
/* this socket is unused, break out of loop */
break;
else {
if(s > this_max_fd)
this_max_fd = s;
if(s > (curl_socket_t)this_max_fd)
this_max_fd = (int)s;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment