aboutsummaryrefslogtreecommitdiffstats
path: root/src/interpolator.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/interpolator.c')
-rw-r--r--src/interpolator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interpolator.c b/src/interpolator.c
index 24fa927..84ddd5d 100644
--- a/src/interpolator.c
+++ b/src/interpolator.c
@@ -64,10 +64,10 @@ connect_port(LV2_Handle instance,
switch (port) {
case INTERPOLATOR_INPUT:
- plugin->input = data;
+ plugin->input = (float*)data;
break;
case INTERPOLATOR_OUTPUT:
- plugin->output = data;
+ plugin->output = (float*)data;
break;
}
}