mirror of
https://github.com/curl/curl.git
synced 2026-07-24 18:57:18 +03:00
multi: Fix compile warning on 64-bit systems
This commit is contained in:
parent
9a0b6e42af
commit
bed311eda2
1 changed files with 1 additions and 1 deletions
|
|
@ -1831,7 +1831,7 @@ CURLMsg *curl_multi_info_read(CURLM *multi_handle, int *msgs_in_queue)
|
|||
/* remove the extracted entry */
|
||||
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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue