aboutsummaryrefslogtreecommitdiffstats
path: root/src/interpolator.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/interpolator.c')
-rw-r--r--src/interpolator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interpolator.c b/src/interpolator.c
index 0324239..67d7114 100644
--- a/src/interpolator.c
+++ b/src/interpolator.c
@@ -99,7 +99,7 @@ runInterpolator(LV2_Handle instance,
Interpolator* plugin = (Interpolator*)instance;
/* Control Input (float value) */
- float input = *(plugin->input);
+ const float input = *(plugin->input);
/* Interpolated Output (pointer to float value) */
float* output = plugin->output;