From 1d0547504963fcbe28dba9d3913a2398df65a938 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 10 Jan 2021 22:06:21 +0100 Subject: Fix unused parameter warnings --- test/failed_lib_descriptor.lv2/failed_lib_descriptor.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/failed_lib_descriptor.lv2') diff --git a/test/failed_lib_descriptor.lv2/failed_lib_descriptor.c b/test/failed_lib_descriptor.lv2/failed_lib_descriptor.c index 180c8ae..c7c08cf 100644 --- a/test/failed_lib_descriptor.lv2/failed_lib_descriptor.c +++ b/test/failed_lib_descriptor.lv2/failed_lib_descriptor.c @@ -23,5 +23,8 @@ LV2_SYMBOL_EXPORT const LV2_Lib_Descriptor* lv2_lib_descriptor(const char* bundle_path, const LV2_Feature* const* features) { + (void)bundle_path; + (void)features; + return NULL; } -- cgit v1.2.1