--- gnuplot-4.0.0/src/matrix.c.old 2004-04-13 18:23:58.000000000 +0100 +++ gnuplot-4.0.0/src/matrix.c 2005-03-01 12:38:07.068232748 +0000 @@ -290,9 +290,12 @@ *d = 1.0; for (ar = a, lim = &(a[n]); ar < lim; ar++) { large = 0.0; - for (ac = *ar, limc = &(ac[n]); ac < limc;) - if ((temp = fabs(*ac++)) > large) + for (ac = *ar, limc = &(ac[n]); ac < limc;){ + temp = *ac++; + temp = fabs(temp); + if (temp > large) large = temp; + } if (large == 0.0) int_error(NO_CARET, "Singular matrix in LU-DECOMP"); *dp++ = 1 / large; multitech-oe.git
Multi-Tech CoreCDP 1.x OpenEmbedded TreeMulti-Tech Systems
summaryrefslogtreecommitdiff
path: root/packages/wmctrl
AgeCommit message (Collapse)AuthorFiles
2006-10-10Remove MAINTAINER fields from recipes, add MAINTAINER file to replace them.Koen Kooi1
see email thread at http://lists.openembedded.org/pipermail/openembedded-devel/2006-October/000523.html for details
2006-07-07wmctrl: Add wmctrl, a cmd line tool to interact with an EWMH/NetWM ↵Matthias Hentges2
compatible X Window Manager