switching to absolute leak/bloat numbers.

This commit is contained in:
mcafee%netscape.com 1999-10-27 06:34:28 +00:00
parent f068b6de9f
commit 1b3474f8e2

View File

@ -75,7 +75,9 @@ sub find_bloat_data {
if ($inBloatStats) { if ($inBloatStats) {
if (/^TOTAL/) { if (/^TOTAL/) {
chomp; chomp;
my ($leaks, $bloat) = (split)[2,4]; # 2,4 is percentage, 1,3 is absolute.
#my ($leaks, $bloat) = (split)[2,4];
my ($leaks, $bloat) = (split)[1,3];
chop $leaks; chop $leaks;
chop $bloat; chop $bloat;
return $leaks, $bloat; return $leaks, $bloat;