aboutsummaryrefslogtreecommitdiff
path: root/externals/vanilla/ftom~.c
diff options
context:
space:
mode:
Diffstat (limited to 'externals/vanilla/ftom~.c')
-rw-r--r--externals/vanilla/ftom~.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/vanilla/ftom~.c b/externals/vanilla/ftom~.c
index cfc63595..0630bc48 100644
--- a/externals/vanilla/ftom~.c
+++ b/externals/vanilla/ftom~.c
@@ -25,7 +25,7 @@ static t_int *ftom_tilde_perform(t_int *w)
{
t_sample *in = *(t_sample **)(w+1), *out = *(t_sample **)(w+2);
t_int n = *(t_int *)(w+3);
- for (; n--; *in++, out++)
+ for (; n--; in++, out++)
{
t_sample f = *in;
*out = (f > 0 ? 17.3123405046 * log(.12231220585 * f) : -1500);