mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-05 12:31:33 +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";
|
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};
|
||||||
|
Loading…
Reference in New Issue
Block a user