From 2d4b8fd39c2676841a882c8481ae86a41d332556 Mon Sep 17 00:00:00 2001 From: "slamm%netscape.com" Date: Thu, 17 Feb 2000 02:32:42 +0000 Subject: [PATCH] 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 --- mozilla/webtools/tinderbox/tbglobals.pl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mozilla/webtools/tinderbox/tbglobals.pl b/mozilla/webtools/tinderbox/tbglobals.pl index 97ae2ce1855..baa5c094c54 100755 --- a/mozilla/webtools/tinderbox/tbglobals.pl +++ b/mozilla/webtools/tinderbox/tbglobals.pl @@ -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; }