diff options
Diffstat (limited to 'tests/libtest/lib503.c')
-rw-r--r-- | tests/libtest/lib503.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |