summaryrefslogtreecommitdiffstats
path: root/test/missing_plugin.lv2/missing_plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/missing_plugin.lv2/missing_plugin.c')
-rw-r--r--test/missing_plugin.lv2/missing_plugin.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/test/missing_plugin.lv2/missing_plugin.c b/test/missing_plugin.lv2/missing_plugin.c
index bf45cbe..8ca146c 100644
--- a/test/missing_plugin.lv2/missing_plugin.c
+++ b/test/missing_plugin.lv2/missing_plugin.c
@@ -21,22 +21,22 @@
#include <stdlib.h>
static const LV2_Descriptor descriptor = {
- "http://example.org/not-the-plugin-you-are-looking-for",
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL
-};
+ "http://example.org/not-the-plugin-you-are-looking-for",
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL};
LV2_SYMBOL_EXPORT
-const LV2_Descriptor* lv2_descriptor(uint32_t index)
+const LV2_Descriptor*
+lv2_descriptor(uint32_t index)
{
- if (index == 0) {
- return &descriptor;
- }
+ if (index == 0) {
+ return &descriptor;
+ }
- return NULL;
+ return NULL;
}