Fix a brain blunder in the HTML output.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22094 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2005-05-16 18:52:57 +00:00
parent 4dd4e6ae1b
commit bfb7ca9ccb

View File

@ -161,19 +161,20 @@ sub printStats
print " <tr><th style=\"text-align:left\">Directory</th>\n"; print " <tr><th style=\"text-align:left\">Directory</th>\n";
foreach $user (keys %Stats) foreach $user (keys %Stats)
{ {
print "<th style=\"text-align:right\">",$user,"</th></tr>\n"; print "<th style=\"text-align:right\">",$user,"</th>\n";
} }
print "</tr>\n";
} }
$RowCount++; $RowCount++;
foreach $user (keys %{$hash}) { $total += $hash->{$user}; }
if ($html) if ($html)
{ print "<tr><td style=\"text-align:left\">",$dir,"</td>"; } { print "<tr><td style=\"text-align:left\">",$dir,"</td>"; }
else else
{ print $dir,"\n"; } { print $dir,"\n"; }
foreach $user (keys %{$hash}) { $total += $hash->{$user}; }
foreach $user ( sort keys %Stats ) foreach $user ( sort keys %Stats )
{ {
my $v = $hash->{$user}; my $v = $hash->{$user};