summaryrefslogtreecommitdiff
path: root/apps/plugins/midi2wav.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/midi2wav.c')
-rw-r--r--apps/plugins/midi2wav.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/apps/plugins/midi2wav.c b/apps/plugins/midi2wav.c
index ad41451d88..6e4e7d1bc1 100644
--- a/apps/plugins/midi2wav.c
+++ b/apps/plugins/midi2wav.c
@@ -54,20 +54,14 @@ long bpm;
54#include "midi/synth.c" 54#include "midi/synth.c"
55 55
56 56
57
58
59int fd=-1; /* File descriptor where the output is written */ 57int fd=-1; /* File descriptor where the output is written */
60 58
61extern long tempo; /* The sequencer keeps track of this */ 59extern long tempo; /* The sequencer keeps track of this */
62 60
63 61const struct plugin_api * rb;
64struct plugin_api * rb;
65
66
67
68 62
69 63
70enum plugin_status plugin_start(struct plugin_api* api, void* parameter) 64enum plugin_status plugin_start(const struct plugin_api* api, const void* parameter)
71{ 65{
72 (void)parameter; 66 (void)parameter;
73 rb = api; 67 rb = api;