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_gauss.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/mtx_gauss.c') diff --git a/src/mtx_gauss.c b/src/mtx_gauss.c index c6d9a3f..c2a627c 100644 --- a/src/mtx_gauss.c +++ b/src/mtx_gauss.c @@ -41,14 +41,12 @@ static void mtx_gauss_matrix(t_matrix *x, t_symbol *s, int argc, t_atom *argv) /* maybe we should do this in double or long double ? */ int row=atom_getfloat(argv); int col=atom_getfloat(argv+1); - int i, j, k, row2=row*row; + int i, j; const t_matrixfloat singrange = 1.0e-10; - t_matrixfloat *original, *gaussed; - t_matrixfloat *a1, *a2, *b1, *b2; // dummy pointers + t_matrixfloat *original; + t_matrixfloat *a1, *a2; // dummy pointers - int ok = 0; - int I; if(row*col+2>argc){ post("mtx_print : sparse matrices not yet supported : use \"mtx_check\""); -- cgit v1.2.1