summaryrefslogtreecommitdiffstats
path: root/tests/helpers
diff options
context:
space:
mode:
authorGilles Espinasse2013-05-13 16:52:28 +0200
committerKarel Zak2013-05-21 11:38:55 +0200
commite992a7b20d6a17bde321f30b53e9d3a480e94fed (patch)
tree586f813b941e44d705bb8b0b34b427d703204ed4 /tests/helpers
parentutil-linux minor typo fixes (diff)
downloadkernel-qcow2-util-linux-e992a7b20d6a17bde321f30b53e9d3a480e94fed.tar.gz
kernel-qcow2-util-linux-e992a7b20d6a17bde321f30b53e9d3a480e94fed.tar.xz
kernel-qcow2-util-linux-e992a7b20d6a17bde321f30b53e9d3a480e94fed.zip
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 <g.esp@free.fr>
Diffstat (limited to 'tests/helpers')
-rw-r--r--tests/helpers/test_md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/helpers/test_md5.c b/tests/helpers/test_md5.c
index 0f37afdc0..44f6a933d 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;