return an int, not a CURLcode
authorDaniel Stenberg <daniel@haxx.se>
Fri, 13 Feb 2004 12:17:42 +0000 (12:17 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 13 Feb 2004 12:17:42 +0000 (12:17 +0000)
tests/libtest/lib504.c

index f2a2021..7133fc6 100644 (file)
@@ -16,7 +16,7 @@
 int test(char *URL)
 {
   CURL *c;
-  CURLcode ret=CURLE_OK;
+  int ret=0;
   CURLM *m;
   fd_set rd, wr, exc;
   CURLMcode res;