From 60461da2fb3c89e65c2a1064135a0cd476841d1d Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Tue, 12 Sep 2006 12:17:13 +0000 Subject: [PATCH] warning fixes [r8220] --- ir/adt/gaussjordan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/adt/gaussjordan.c b/ir/adt/gaussjordan.c index f575a584a..c4c799880 100644 --- a/ir/adt/gaussjordan.c +++ b/ir/adt/gaussjordan.c @@ -45,7 +45,7 @@ int firm_gaussjordansolve(double *A, double *vec, int nsize) { - int i, j, row, col, col2, biggest_r, biggest_c, t; + int i, j, row, col, col2, biggest_r = 0, biggest_c = 0, t; double big, temp, sum; double *scramvec = xmalloc(nsize * sizeof(*scramvec)); int *x = xmalloc(nsize * sizeof(*x)); -- 2.20.1