From 134cb66129d1ad360ec50dda455886854b2a0cdd Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 19 Feb 2004 13:00:05 +0000 Subject: [PATCH] return int from test() --- tests/libtest/lib500.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libtest/lib500.c b/tests/libtest/lib500.c index f78ab5561..7cbc65e3f 100644 --- a/tests/libtest/lib500.c +++ b/tests/libtest/lib500.c @@ -1,6 +1,6 @@ #include "test.h" -CURLcode test(char *URL) +int test(char *URL) { CURLcode res; CURL *curl = curl_easy_init();