From 3f209ff081bbcf0f15a3acfcb04b3371011f9f9d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 10 Dec 2022 16:45:27 -0500 Subject: Simplify trivial switch statements --- bindings/test/bindings_test_plugin.c | 7 +------ test/lib_descriptor.lv2/lib_descriptor.c | 7 +------ test/test_plugin.lv2/test_plugin.c | 7 +------ 3 files changed, 3 insertions(+), 18 deletions(-) diff --git a/bindings/test/bindings_test_plugin.c b/bindings/test/bindings_test_plugin.c index 15978b0..18907d5 100644 --- a/bindings/test/bindings_test_plugin.c +++ b/bindings/test/bindings_test_plugin.c @@ -184,10 +184,5 @@ LV2_SYMBOL_EXPORT const LV2_Descriptor* lv2_descriptor(uint32_t index) { - switch (index) { - case 0: - return &descriptor; - default: - return NULL; - } + return index ? NULL : &descriptor; } diff --git a/test/lib_descriptor.lv2/lib_descriptor.c b/test/lib_descriptor.lv2/lib_descriptor.c index 652ba8f..bae1659 100644 --- a/test/lib_descriptor.lv2/lib_descriptor.c +++ b/test/lib_descriptor.lv2/lib_descriptor.c @@ -82,12 +82,7 @@ get_plugin(LV2_Lib_Handle handle, uint32_t index) { (void)handle; - switch (index) { - case 0: - return &descriptor; - default: - return NULL; - } + return index ? NULL : &descriptor; } static const LV2_Lib_Descriptor lib = {NULL, diff --git a/test/test_plugin.lv2/test_plugin.c b/test/test_plugin.lv2/test_plugin.c index 582fd9b..d2906d6 100644 --- a/test/test_plugin.lv2/test_plugin.c +++ b/test/test_plugin.lv2/test_plugin.c @@ -458,10 +458,5 @@ LV2_SYMBOL_EXPORT const LV2_Descriptor* lv2_descriptor(uint32_t index) { - switch (index) { - case 0: - return &descriptor; - default: - return NULL; - } + return index ? NULL : &descriptor; } -- cgit v1.2.1