diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-13 12:17:42 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-13 12:17:42 +0000 |
commit | d25a0a1bc873a13976b545007b7e33a7295b9ad7 (patch) | |
tree | f4e248f175d92574cde4d691f03b2a1521f2ee16 | |
parent | 4d17e77532934c9db2956083eb76821e01e98f0f (diff) | |
download | curl-d25a0a1bc873a13976b545007b7e33a7295b9ad7.tar.gz |
return an int, not a CURLcode
-rw-r--r-- | tests/libtest/lib504.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |