Fixed thing that chops off final digit.

This commit is contained in:
warren%netscape.com 1999-10-28 21:06:36 +00:00
Родитель 9a0c1c288d
Коммит 5eb4aa2542
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -78,8 +78,8 @@ sub find_bloat_data {
# 2,4 is percentage, 1,3 is absolute. # 2,4 is percentage, 1,3 is absolute.
#my ($leaks, $bloat) = (split)[2,4]; #my ($leaks, $bloat) = (split)[2,4];
my ($leaks, $bloat) = (split)[1,3]; my ($leaks, $bloat) = (split)[1,3];
chop $leaks; #chop $leaks;
chop $bloat; #chop $bloat;
return $leaks, $bloat; return $leaks, $bloat;
} }
} else { } else {