1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Fix a brain blunder in the HTML output.

llvm-svn: 22094
This commit is contained in:
Reid Spencer 2005-05-16 18:52:57 +00:00
parent 7142fb87e8
commit 3b97b81bd9

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};