aboutsummaryrefslogtreecommitdiff
path: root/src/n_CNLMS~.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/n_CNLMS~.c')
-rw-r--r--src/n_CNLMS~.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/n_CNLMS~.c b/src/n_CNLMS~.c
index b3b1389..a80c313 100644
--- a/src/n_CNLMS~.c
+++ b/src/n_CNLMS~.c
@@ -67,7 +67,7 @@ static void n_CNLMS_tilde_tick(t_n_CNLMS_tilde *x)
static t_float *n_CNLMS_tilde_check_array(t_symbol *array_sym_name, t_int length)
{
- t_int n_points;
+ int n_points;
t_garray *a;
t_float *vec;
@@ -388,7 +388,8 @@ static void *n_CNLMS_tilde_new(t_symbol *s, t_int argc, t_atom *argv)
{
t_n_CNLMS_tilde *x = (t_n_CNLMS_tilde *)pd_new(n_CNLMS_tilde_class);
char buffer[400];
- t_int i, n_order=39, n_io=1;
+ int i;
+ t_int n_order=39, n_io=1;
t_symbol *w_name;
t_float beta=0.1f;
t_float gamma=0.00001f;