From 0690ab246e27c6d9080148cca9188dbe1aef0724 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Sun, 23 Oct 2005 19:50:45 +0000 Subject: ran with "-Wall" and fixed naughtinesses shut up warnings and errors on vc7 svn path=/trunk/externals/iem/iemmatrix/; revision=3756 --- src/mtx_not.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/mtx_not.c') diff --git a/src/mtx_not.c b/src/mtx_not.c index e73307a..1f04209 100644 --- a/src/mtx_not.c +++ b/src/mtx_not.c @@ -46,14 +46,13 @@ static void mtx_not_list(t_mtx_binscalar *x, t_symbol *s, int argc, t_atom *argv { int n=argc; t_atom *m; - t_float factor = x->f; adjustsize(&x->m, 1, argc); m = x->m.atombuffer; while(n--){ - m->a_type = A_FLOAT; t_float f = atom_getfloat(argv++); + m->a_type = A_FLOAT; (m++)->a_w.w_float = (t_float)(f-MTX_ALMOSTZERO); } -- cgit v1.2.1