From 469bc0e4bb4a33c05f03cbf7ea57ad1d0f78af82 Mon Sep 17 00:00:00 2001 From: Eric Hawicz Date: Sat, 29 Jul 2023 11:22:12 -0400 Subject: [PATCH] Work around a somewhat misleading warning about "a function declaration without a prototype is deprecated in all versions of C" in test1.c --- tests/test1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test1.c b/tests/test1.c index 12097b2..b45f752 100644 --- a/tests/test1.c +++ b/tests/test1.c @@ -190,7 +190,7 @@ void test_array_list_expand_internal(void) } void test_array_insert_idx(void); -void test_array_insert_idx() +void test_array_insert_idx(void) { json_object *my_array; struct json_object *jo1;