From: Daniel Stenberg Date: Mon, 9 Feb 2004 08:28:00 +0000 (+0000) Subject: return 'res' to better discover test failures and to stop compiler warnings X-Git-Tag: cares-1_1_0~319 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b440c6638fce6b90cd4d3210513c5f1679787607;p=curl return 'res' to better discover test failures and to stop compiler warnings about it never being used --- 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; }