From ccf4b0da41a10a77d09e85f06ef4b85816c53091 Mon Sep 17 00:00:00 2001 From: Hanspeter Portner Date: Fri, 24 Nov 2023 21:47:32 +0100 Subject: [PATCH] Fix strict prototype compiler warning --- meson_options.txt | 2 +- test/osc.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 23510d3..a31a3dc 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -6,4 +6,4 @@ option('build-tests', value : true, yield : true) -option('version', type : 'string', value : '0.1.181') +option('version', type : 'string', value : '0.1.183') diff --git a/test/osc.c b/test/osc.c index 20ea344..39a9264 100644 --- a/test/osc.c +++ b/test/osc.c @@ -451,7 +451,7 @@ static test_t tests [] = { } ; static int -_run_tests() +_run_tests(void) { LV2_OSC_Writer writer; @@ -1144,7 +1144,7 @@ _run_test_hooks_internal(const char *path) } static int -_run_test_hooks() +_run_test_hooks(void) { { assert(_run_test_hooks_internal("/nil") == true); -- 2.38.5