From f18554b4ad012396b5ea81c3d9002db6cc44215d Mon Sep 17 00:00:00 2001 From: Albert Graef <aggraef@gmail.com> Date: Tue, 27 Aug 2019 10:19:55 +0200 Subject: [PATCH] add missing void return type --- externals/iem/iemmatrix/src/mtx_dispersive_dline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/externals/iem/iemmatrix/src/mtx_dispersive_dline.c b/externals/iem/iemmatrix/src/mtx_dispersive_dline.c index 9648ab47d..84f716fee 100644 --- a/externals/iem/iemmatrix/src/mtx_dispersive_dline.c +++ b/externals/iem/iemmatrix/src/mtx_dispersive_dline.c @@ -141,7 +141,7 @@ static void mtx_dispersive_dline_resize(t_mtx_dispersive_dline *x, t_symbol *s, } } -static allpass_chain_cycle (t_float x, t_float *y, t_float *z, int n, t_float a) { +static void allpass_chain_cycle (t_float x, t_float *y, t_float *z, int n, t_float a) { t_float w, in; int c; in = y[0] = x; -- GitLab