From: Daniel Stenberg Date: Thu, 19 Feb 2004 13:00:33 +0000 (+0000) Subject: typecast the type to an int on return X-Git-Tag: cares-1_1_0~230 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa8ecd3d53cabc747cf2930bc9c3710b39b92ec5;p=curl typecast the type to an int on return --- diff --git a/tests/libtest/lib500.c b/tests/libtest/lib500.c index 7cbc65e3f..5943b5849 100644 --- a/tests/libtest/lib500.c +++ b/tests/libtest/lib500.c @@ -8,6 +8,6 @@ int test(char *URL) curl_easy_setopt(curl, CURLOPT_HEADER, TRUE); res = curl_easy_perform(curl); curl_easy_cleanup(curl); - return res; + return (int)res; }