From: Dan Fandrich Date: Fri, 4 Mar 2011 23:11:21 +0000 (-0800) Subject: The unit test argument is allowed to be used X-Git-Tag: curl-7_21_5~135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bfc491a2d238e141872d1266a65121e1309c1e7c;p=thirdparty%2Fcurl.git The unit test argument is allowed to be used --- diff --git a/tests/unit/curlcheck.h b/tests/unit/curlcheck.h index 9525dd6fb5..66d9e71026 100644 --- a/tests/unit/curlcheck.h +++ b/tests/unit/curlcheck.h @@ -69,9 +69,9 @@ extern int unitfail; #define UNITTEST_START \ - int test(char *unused) \ + int test(char *arg) \ { \ - (void)unused; \ + (void)arg; \ if (unit_setup()) { \ fail("unit_setup() failure"); \ } else {