From 5087f89ac854a25c56d975a49827c3b607bdbaf9 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Thu, 25 Nov 2010 02:58:59 +0100 Subject: [PATCH] curl_multi_info_read: fix compiler warning: conversion may lose significant bits --- lib/multi.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/multi.c b/lib/multi.c index 875e136..9f51b7a 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -41,6 +41,7 @@ #include "sendf.h" #include "timeval.h" #include "http.h" +#include "warnless.h" #define _MPRINTF_REPLACE /* use our functions only */ #include @@ -1836,7 +1837,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 = (int)Curl_llist_count(multi->msglist); + *msgs_in_queue = curlx_uztosi(Curl_llist_count(multi->msglist)); return &msg->extmsg; } -- 2.7.4