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: curl-7_11_1~292 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa8ecd3d53cabc747cf2930bc9c3710b39b92ec5;p=thirdparty%2Fcurl.git typecast the type to an int on return --- diff --git a/tests/libtest/lib500.c b/tests/libtest/lib500.c index 7cbc65e3f1..5943b58499 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; }