diff options
author | David Robillard <d@drobilla.net> | 2012-08-09 01:57:23 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-09 01:57:23 +0000 |
commit | e6e94966b45ab25c8852445ee05869de879819df (patch) | |
tree | 18233dd7b830c7ea49522ff09ad23a0d5fffb82a /plugins/eg-synth.lv2/synth.c | |
parent | 5a8f20f5a7b818e8e9d0be7f24f232bed0078834 (diff) | |
download | lv2-e6e94966b45ab25c8852445ee05869de879819df.tar.xz |
Fix missing static declarations (-Wstrict-prototypes).
Diffstat (limited to 'plugins/eg-synth.lv2/synth.c')
-rw-r--r-- | plugins/eg-synth.lv2/synth.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |