From b0edd6655417caf4db7ad2430bfd2ace33c230b8 Mon Sep 17 00:00:00 2001 From: Hanspeter Portner Date: Fri, 3 Nov 2023 11:25:16 +0100 Subject: [PATCH] Fix non-strict prototype warning --- meson_options.txt | 2 +- test/test.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index b1d18c3..a64f866 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -5,4 +5,4 @@ option('build-tests', type : 'boolean', value : true) -option('version', type : 'string', value : '0.5.49') +option('version', type : 'string', value : '0.5.51') diff --git a/test/test.c b/test/test.c index a80bfff..610e64a 100644 --- a/test/test.c +++ b/test/test.c @@ -9,7 +9,7 @@ #include static void -_test_priorities() +_test_priorities(void) { slot_t slot; @@ -57,7 +57,7 @@ _test_priorities() } static void -_test_parse() +_test_parse(void) { state_t state; LV2_OSC_Reader reader; -- 2.38.5