diff options
author | David Robillard <d@drobilla.net> | 2020-12-16 16:48:43 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-16 16:48:43 +0100 |
commit | 37ec8d59b349b9b735b58134a72e7372f36345dc (patch) | |
tree | d420f7a419fdfff739ba3d549008d3ffe97d233a /plugins/eg-scope.lv2 | |
parent | c51699efe9064ff3b59ee40db81a0b92e3d01272 (diff) | |
download | lv2-37ec8d59b349b9b735b58134a72e7372f36345dc.tar.xz |
Simplify degenerate switches
Diffstat (limited to 'plugins/eg-scope.lv2')
-rw-r--r-- | plugins/eg-scope.lv2/examploscope_ui.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/plugins/eg-scope.lv2/examploscope_ui.c b/plugins/eg-scope.lv2/examploscope_ui.c index ce0000c..33f1b0a 100644 --- a/plugins/eg-scope.lv2/examploscope_ui.c +++ b/plugins/eg-scope.lv2/examploscope_ui.c @@ -667,10 +667,5 @@ LV2_SYMBOL_EXPORT const LV2UI_Descriptor* lv2ui_descriptor(uint32_t index) { - switch (index) { - case 0: - return &descriptor; - default: - return NULL; - } + return index == 0 ? &descriptor : NULL; } |