aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/eg-amp.lv2/amp.c2
-rw-r--r--plugins/eg-sampler.lv2/sampler_ui.c2
-rw-r--r--plugins/eg-synth.lv2/synth.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/eg-amp.lv2/amp.c b/plugins/eg-amp.lv2/amp.c
index 189a697..7f7cacc 100644
--- a/plugins/eg-amp.lv2/amp.c
+++ b/plugins/eg-amp.lv2/amp.c
@@ -120,7 +120,7 @@ cleanup(LV2_Handle instance)
}
/** Return extension data provided by the plugin. */
-const void*
+static const void*
extension_data(const char* uri)
{
return NULL; /* This plugin has no extension data. */
diff --git a/plugins/eg-sampler.lv2/sampler_ui.c b/plugins/eg-sampler.lv2/sampler_ui.c
index 16d8d50..40922ae 100644
--- a/plugins/eg-sampler.lv2/sampler_ui.c
+++ b/plugins/eg-sampler.lv2/sampler_ui.c
@@ -174,7 +174,7 @@ port_event(LV2UI_Handle handle,
}
}
-const void*
+static const void*
extension_data(const char* uri)
{
return NULL;
diff --git a/plugins/eg-synth.lv2/synth.c b/plugins/eg-synth.lv2/synth.c
index 4bed709..d969057 100644
--- a/plugins/eg-synth.lv2/synth.c
+++ b/plugins/eg-synth.lv2/synth.c
@@ -140,7 +140,7 @@ cleanup(LV2_Handle instance)
}
/** Return extension data provided by the plugin. */
-const void*
+static const void*
extension_data(const char* uri)
{
return NULL; /* This plugin has no extension data. */