mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
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:
parent
4dd4e6ae1b
commit
bfb7ca9ccb
@ -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…
Reference in New Issue
Block a user