multi: Fix compile warning on 64-bit systems
This commit is contained in:
parent
9a0b6e42af
commit
bed311eda2
@ -1831,7 +1831,7 @@ CURLMsg *curl_multi_info_read(CURLM *multi_handle, int *msgs_in_queue)
|
|||||||
/* remove the extracted entry */
|
/* remove the extracted entry */
|
||||||
Curl_llist_remove(multi->msglist, e, NULL);
|
Curl_llist_remove(multi->msglist, e, NULL);
|
||||||
|
|
||||||
*msgs_in_queue = Curl_llist_count(multi->msglist);
|
*msgs_in_queue = (int)Curl_llist_count(multi->msglist);
|
||||||
|
|
||||||
return &msg->extmsg;
|
return &msg->extmsg;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user