diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/five-bugs-a-day.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/five-bugs-a-day.pl b/scripts/five-bugs-a-day.pl index f722c3902..c41cac472 100755 --- a/scripts/five-bugs-a-day.pl +++ b/scripts/five-bugs-a-day.pl @@ -149,7 +149,7 @@ my @all_bugs = keys %BUGS; my @bugs = shuffle (\@all_bugs); # only want first NUM_BUGS bugs -$#bugs = $NUM_BUGS; +@bugs = splice (@bugs, 0, $NUM_BUGS); print "\n"; print "$NUM_BUGS random bugs:\n"; |