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:
parent
7142fb87e8
commit
3b97b81bd9
@ -161,19 +161,20 @@ sub printStats
|
||||
print " <tr><th style=\"text-align:left\">Directory</th>\n";
|
||||
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++;
|
||||
|
||||
foreach $user (keys %{$hash}) { $total += $hash->{$user}; }
|
||||
|
||||
if ($html)
|
||||
{ print "<tr><td style=\"text-align:left\">",$dir,"</td>"; }
|
||||
else
|
||||
{ print $dir,"\n"; }
|
||||
|
||||
foreach $user (keys %{$hash}) { $total += $hash->{$user}; }
|
||||
|
||||
foreach $user ( sort keys %Stats )
|
||||
{
|
||||
my $v = $hash->{$user};
|
||||
|
Loading…
x
Reference in New Issue
Block a user