aboutsummaryrefslogtreecommitdiff
path: root/src/NLMSCC~.c
diff options
context:
space:
mode:
authormusil <tmusil@users.sourceforge.net>2007-11-08 13:56:44 +0000
committermusil <tmusil@users.sourceforge.net>2007-11-08 13:56:44 +0000
commit7a420e4fe20dcfd99b28bbdecfb14dcb0f34ec4b (patch)
tree1e51df0b5fac87ad9c8d0991a4a057d3b558b778 /src/NLMSCC~.c
parent89e6c20b990a6605830a7bdd431c59106e2feb1d (diff)
some t_int to int
svn path=/trunk/externals/iem/iem_adaptfilt/; revision=8962
Diffstat (limited to 'src/NLMSCC~.c')
-rw-r--r--src/NLMSCC~.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/NLMSCC~.c b/src/NLMSCC~.c
index 1dc4610..445f82a 100644
--- a/src/NLMSCC~.c
+++ b/src/NLMSCC~.c
@@ -21,7 +21,7 @@ noisternig_AT_iem.at; musil_AT_iem.at
/* ----------------------- NLMSCC~ ------------------------------ */
/* -- Normalized Least Mean Square (linear adaptive FIR-filter) -- */
-/* -- with Coefficient Constraint
+/* -- with Coefficient Constraint -- */
/* -- first input: reference signal -- */
/* -- second input: desired signal -- */
/* -- -- */
@@ -61,7 +61,7 @@ static void NLMSCC_tilde_tick(t_NLMSCC_tilde *x)
static t_float *NLMSCC_tilde_check_array(t_symbol *array_sym_name, t_int length)
{
- t_int n_points;
+ int n_points;
t_garray *a;
t_float *vec;