stricter type use to please compilers
authorDaniel Stenberg <daniel@haxx.se>
Fri, 9 Jun 2006 08:25:16 +0000 (08:25 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 9 Jun 2006 08:25:16 +0000 (08:25 +0000)
tests/libtest/lib525.c

index b4cde12..3726bf6 100644 (file)
@@ -16,7 +16,7 @@
 
 int test(char *URL)
 {
-  CURLMcode res = CURLE_OK;
+  int res = 0;
   CURL *curl;
   FILE *hd_src ;
   int hd ;
@@ -73,7 +73,7 @@ int test(char *URL)
 
   m = curl_multi_init();
 
-  res = curl_multi_add_handle(m, curl);
+  res = (int)curl_multi_add_handle(m, curl);
 
   while(!done) {
     fd_set rd, wr, exc;
@@ -84,7 +84,7 @@ int test(char *URL)
     interval.tv_usec = 0;
 
     while (res == CURLM_CALL_MULTI_PERFORM) {
-      res = curl_multi_perform(m, &running);
+      res = (int)curl_multi_perform(m, &running);
       if (running <= 0) {
         done = TRUE;
         break;
@@ -125,5 +125,5 @@ int test(char *URL)
   fclose(hd_src); /* close the local file */
 
   curl_global_cleanup();
-  return (int)res;
+  return res;
 }