Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
fix increment of native int
  • Loading branch information
FROGGS committed Nov 3, 2014
1 parent 476f600 commit b77224e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.pl
Expand Up @@ -127,7 +127,7 @@

$<distver> = '0' if $<distver> eq '*';
$<breadcrumb> = '/recent';
@reports.push: recent-line($/) unless $i++ > 100;
@reports.push: recent-line($/) unless ($i = $i + 1) > 100;
}
for @osnames -> $osname {
for %stats.keys -> $compver is copy {
Expand Down

0 comments on commit b77224e

Please sign in to comment.