X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FFDM%2FLaRCsim%2Fls_matrix.c;h=b2bc9c8d1da272a7f383bb86fdeb2a28bc3d51c7;hb=0114fd962e7450b080e580fe67414ca43cd99bd7;hp=bd3a3213b897bbbf02ce191141e84bfc703ff2bc;hpb=14a8533f636b7d4ad5d95cff30e4d46b42eb57ca;p=flightgear.git diff --git a/src/FDM/LaRCsim/ls_matrix.c b/src/FDM/LaRCsim/ls_matrix.c index bd3a3213b..b2bc9c8d1 100644 --- a/src/FDM/LaRCsim/ls_matrix.c +++ b/src/FDM/LaRCsim/ls_matrix.c @@ -46,8 +46,15 @@ $Header$ $Log$ -Revision 1.1 1999/06/17 18:07:34 curt -Initial revision +Revision 1.2 2004/04/01 15:27:55 curt +Clean up various compiler warnings that have crept into the code. This +by no means get's them all, but it's a start. + +Revision 1.1.1.1 2002/09/10 01:14:02 curt +Initial revision of FlightGear-0.9.0 + +Revision 1.1.1.1 1999/06/17 18:07:34 curt +Start of 0.7.x branch Revision 1.1.1.1 1999/04/05 21:32:45 curt Start of 0.6.x branch. @@ -173,7 +180,7 @@ int nr_gaussj(double **a, int n, double **b, int m) { int *indxc, *indxr, *ipiv; - int i, icol, irow, j, k, l, ll; + int i, icol = 0, irow = 0, j, k, l, ll; double big, dum, pivinv, temp; int bexists = ((m != 0) || (b == 0));