From a5c4442ebf63c3583ae7c2000376158e7efaf5e9 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 5 Feb 2004 12:34:17 +0000 Subject: changed the test() function to return type int --- tests/libtest/lib503.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/libtest/lib503.c') diff --git a/tests/libtest/lib503.c b/tests/libtest/lib503.c index f324b35d6..f74ad3f38 100644 --- a/tests/libtest/lib503.c +++ b/tests/libtest/lib503.c @@ -14,7 +14,7 @@ * auth info. */ -CURLcode test(char *URL) +int test(char *URL) { CURL *c; CURLM *m; @@ -82,6 +82,6 @@ CURLcode test(char *URL) curl_easy_cleanup(c); curl_multi_cleanup(m); - return 0; + return CURLE_OK; } -- cgit v1.2.3