typecast the type to an int on return
authorDaniel Stenberg <daniel@haxx.se>
Thu, 19 Feb 2004 13:00:33 +0000 (13:00 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 19 Feb 2004 13:00:33 +0000 (13:00 +0000)
tests/libtest/lib500.c

index 7cbc65e..5943b58 100644 (file)
@@ -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;
 }