diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-19 13:00:05 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-19 13:00:05 +0000 |
commit | 134cb66129d1ad360ec50dda455886854b2a0cdd (patch) | |
tree | d0d5638b7b1615ec982cf9cddd9e35d68d5ac5a0 | |
parent | 349a15b089aa588196bf52420b1d3a32de657206 (diff) | |
download | curl-134cb66129d1ad360ec50dda455886854b2a0cdd.tar.gz |
return int from test()
-rw-r--r-- | tests/libtest/lib500.c | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |