From cdd360209514cc181e73266bf55e31408853a9eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= Date: Fri, 2 Feb 2018 11:31:16 +0100 Subject: [PATCH] test: Fix declaration of main method --- test/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.c b/test/test.c index d24992f..b7d85af 100644 --- a/test/test.c +++ b/test/test.c @@ -109,7 +109,7 @@ static void cn_cbor_decode_test(const unsigned char *buf, int len) { printf("%s at %d\n", err_name[back.err], back.pos); } -int main() { +int main(void) { char buf[100000]; unsigned char *end; char *bufend;