From: Daniel Stenberg <daniel@haxx.se>
Date: Fri, 13 Feb 2004 12:17:42 +0000 (+0000)
Subject: return an int, not a CURLcode
X-Git-Tag: cares-1_1_0~281
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d25a0a1bc873a13976b545007b7e33a7295b9ad7;p=curl

return an int, not a CURLcode
---

diff --git a/tests/libtest/lib504.c b/tests/libtest/lib504.c
index f2a202199..7133fc6df 100644
--- a/tests/libtest/lib504.c
+++ b/tests/libtest/lib504.c
@@ -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;