diff options
author | musil <tmusil@users.sourceforge.net> | 2007-11-08 13:56:44 +0000 |
---|---|---|
committer | musil <tmusil@users.sourceforge.net> | 2007-11-08 13:56:44 +0000 |
commit | 7a420e4fe20dcfd99b28bbdecfb14dcb0f34ec4b (patch) | |
tree | 1e51df0b5fac87ad9c8d0991a4a057d3b558b778 /src/n_CNLMS~.c | |
parent | 89e6c20b990a6605830a7bdd431c59106e2feb1d (diff) |
some t_int to int
svn path=/trunk/externals/iem/iem_adaptfilt/; revision=8962
Diffstat (limited to 'src/n_CNLMS~.c')
-rw-r--r-- | src/n_CNLMS~.c | 5 |
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; |