From fa8ecd3d53cabc747cf2930bc9c3710b39b92ec5 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 19 Feb 2004 13:00:33 +0000 Subject: [PATCH] typecast the type to an int on return --- tests/libtest/lib500.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libtest/lib500.c b/tests/libtest/lib500.c index 7cbc65e..5943b58 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; } -- 2.7.4