Make checkins fall into the correct group (change edge condition). Also, drop ampersand from subroutine calls.

git-svn-id: svn://10.0.0.236/trunk@61171 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
slamm%netscape.com 2000-02-17 02:32:42 +00:00
parent 8681cbd329
commit 2d4b8fd39c

View File

@ -121,14 +121,14 @@ sub tb_load_data {
$cvs_root = '/m/src' if $cvs_root eq '';
$td->{cvs_root} = $cvs_root;
$build_list = &load_buildlog($td);
$build_list = load_buildlog($td);
&get_build_name_index($build_list);
&get_build_time_index($build_list);
get_build_name_index($build_list);
get_build_time_index($build_list);
&load_who($td, $who_list);
load_who($td, $who_list);
&make_build_table($td, $build_list);
make_build_table($td, $build_list);
$td->{bloaty} = load_bloaty($td);
$td->{warnings} = load_warnings($td);
@ -354,7 +354,7 @@ sub load_who {
# Find the time slice where this checkin belongs.
for (my $ii = $time_count - 1; $ii >= 0; $ii--) {
if ($checkin_time <= $build_time_times->[$ii]) {
if ($checkin_time < $build_time_times->[$ii]) {
$who_list->[$ii+1]->{$email} = 1;
last;
}