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_CNLMS~.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/n_CNLMS~.c') 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; -- cgit v1.2.1