Skip to content
Snippets Groups Projects
Commit f18554b4 authored by Albert Gräf's avatar Albert Gräf
Browse files

add missing void return type

parent 38c021c7
No related branches found
No related tags found
No related merge requests found
...@@ -141,7 +141,7 @@ static void mtx_dispersive_dline_resize(t_mtx_dispersive_dline *x, t_symbol *s, ...@@ -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; t_float w, in;
int c; int c;
in = y[0] = x; in = y[0] = x;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment