From 7a420e4fe20dcfd99b28bbdecfb14dcb0f34ec4b Mon Sep 17 00:00:00 2001 From: musil Date: Thu, 8 Nov 2007 13:56:44 +0000 Subject: some t_int to int svn path=/trunk/externals/iem/iem_adaptfilt/; revision=8962 --- src/n_CLNLMS~.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/n_CLNLMS~.c') diff --git a/src/n_CLNLMS~.c b/src/n_CLNLMS~.c index 05ef1c1..be330b6 100644 --- a/src/n_CLNLMS~.c +++ b/src/n_CLNLMS~.c @@ -68,7 +68,7 @@ static void n_CLNLMS_tilde_tick(t_n_CLNLMS_tilde *x) static t_float *n_CLNLMS_tilde_check_array(t_symbol *array_sym_name, t_int length) { - t_int n_points; + int n_points; t_garray *a; t_float *vec; @@ -399,7 +399,8 @@ static void *n_CLNLMS_tilde_new(t_symbol *s, t_int argc, t_atom *argv) { t_n_CLNLMS_tilde *x = (t_n_CLNLMS_tilde *)pd_new(n_CLNLMS_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; -- cgit v1.2.1