diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-09 08:28:00 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-09 08:28:00 +0000 |
commit | b440c6638fce6b90cd4d3210513c5f1679787607 (patch) | |
tree | f8afe14b622997f01e77708ee000275b95316ba9 | |
parent | 648c5b05c025a02ec81d933921552e06767c26a0 (diff) |
return 'res' to better discover test failures and to stop compiler warnings
about it never being used
-rw-r--r-- | tests/libtest/lib502.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib502.c b/tests/libtest/lib502.c index ac298f0fc..0a852c998 100644 --- a/tests/libtest/lib502.c +++ b/tests/libtest/lib502.c @@ -28,6 +28,6 @@ int test(char *URL) curl_easy_cleanup(c); curl_multi_cleanup(m); - return 0; + return res; } |