multi: Fix compile warning on 64-bit systems

This commit is contained in:
Ben Greear 2010-08-24 18:30:26 +02:00 committed by Daniel Stenberg
parent 9a0b6e42af
commit bed311eda2
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}