From 8c3e0c4d90fce56f59aab84f1f62aaf484706ce1 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 29 Nov 2020 11:52:57 +0100 Subject: Fix Wunused-parameter warnings --- src/module.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/module.c') diff --git a/src/module.c b/src/module.c index be6cfb8..a33b27c 100644 --- a/src/module.c +++ b/src/module.c @@ -100,6 +100,8 @@ ganv_module_set_property(GObject* object, const GValue* value, GParamSpec* pspec) { + (void)value; + g_return_if_fail(object != NULL); g_return_if_fail(GANV_IS_MODULE(object)); @@ -116,6 +118,8 @@ ganv_module_get_property(GObject* object, GValue* value, GParamSpec* pspec) { + (void)value; + g_return_if_fail(object != NULL); g_return_if_fail(GANV_IS_MODULE(object)); -- cgit v1.2.1