diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-10-23 19:50:45 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-10-23 19:50:45 +0000 |
commit | 0690ab246e27c6d9080148cca9188dbe1aef0724 (patch) | |
tree | 78f53f578430c8c4e3287ed6b15dc60523aebc4d /src/mtx_gauss.c | |
parent | 6a4760f0ee46ad46a00f6677c2edb16a306e60c2 (diff) |
ran with "-Wall" and fixed naughtinesses
shut up warnings and errors on vc7
svn path=/trunk/externals/iem/iemmatrix/; revision=3756
Diffstat (limited to 'src/mtx_gauss.c')
-rw-r--r-- | src/mtx_gauss.c | 8 |
1 files changed, 3 insertions, 5 deletions
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\""); |