From: Karel Zak Date: Mon, 1 Aug 2011 12:57:05 +0000 (+0200) Subject: tests: fix compiler warnings [-Wunused-parameter] X-Git-Tag: v2.20-rc2~135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6301d23a656a38d31a47bfac856124935fd70c30;p=thirdparty%2Futil-linux.git tests: fix compiler warnings [-Wunused-parameter] Signed-off-by: Karel Zak --- diff --git a/tests/helpers/test_byteswap.c b/tests/helpers/test_byteswap.c index 3932d5a13b..7467ed2707 100644 --- a/tests/helpers/test_byteswap.c +++ b/tests/helpers/test_byteswap.c @@ -48,7 +48,7 @@ uint64_t ary64[] = { 0x0000000000000000, 0x0000000000000000 }; -int main(int argc, char **argv) +int main() { int i; int errors = 0; diff --git a/tests/helpers/test_md5.c b/tests/helpers/test_md5.c index 7f1e4f3589..0f37afdc09 100644 --- a/tests/helpers/test_md5.c +++ b/tests/helpers/test_md5.c @@ -4,8 +4,7 @@ #include "md5.h" -int -main(int argc, char *argv[]) +int main() { int i, ret; struct MD5Context ctx;