From: Gilles Espinasse Date: Mon, 13 May 2013 14:52:28 +0000 (+0200) Subject: tests: new warning fix X-Git-Tag: v2.24-rc1~540 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e992a7b20d6a17bde321f30b53e9d3a480e94fed;p=thirdparty%2Futil-linux.git tests: new warning fix 2.23 added -Wstrict-prototypes check. Fix make check showing CC tests/helpers/test_md5.o tests/helpers/test_md5.c:8: warning: function declaration isn't a prototype Signed-off-by: Gilles Espinasse --- diff --git a/tests/helpers/test_md5.c b/tests/helpers/test_md5.c index 0f37afdc09..44f6a933d0 100644 --- a/tests/helpers/test_md5.c +++ b/tests/helpers/test_md5.c @@ -4,7 +4,7 @@ #include "md5.h" -int main() +int main(void) { int i, ret; struct MD5Context ctx;