diff options
author | Ben Greear <greearb@candelatech.com> | 2010-08-24 18:30:26 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-08-24 18:30:26 +0200 |
commit | bed311eda27a3c7c87f0988310462414c54e5384 (patch) | |
tree | f09a61588a0232f6ed03cbbcf56023e1bc6f351a | |
parent | 9a0b6e42af6b1c40e1817f4e2649deb748affa2f (diff) |
multi: Fix compile warning on 64-bit systems
-rw-r--r-- | lib/multi.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |