From bed311eda27a3c7c87f0988310462414c54e5384 Mon Sep 17 00:00:00 2001 From: Ben Greear Date: Tue, 24 Aug 2010 18:30:26 +0200 Subject: [PATCH] multi: Fix compile warning on 64-bit systems --- lib/multi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/multi.c b/lib/multi.c index dd196b7eb..4bf74a746 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -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; }