diff options
Diffstat (limited to 'src/amp.c')
-rw-r--r-- | src/amp.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -50,13 +50,13 @@ connect_port(LV2_Handle instance, switch (port) { case AMP_GAIN: - plugin->gain = data; + plugin->gain = (float*)data; break; case AMP_INPUT: - plugin->input = data; + plugin->input = (float*)data; break; case AMP_OUTPUT: - plugin->output = data; + plugin->output = (float*)data; break; } } |