Skip to content

Commit

Permalink
Numeric context on time count is insufficient, must be integer.
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Dec 11, 2009
1 parent 480b2d6 commit f1e04a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Partcl/commands/main.pm
Expand Up @@ -421,7 +421,7 @@ our sub time(*@args) {
my $command := @args[0];
my $count;
if +@args == 2 {
$count := +@args[1];
$count := pir::set__ip(@args[1]);
} else {
$count := 1;
}
Expand Down

0 comments on commit f1e04a0

Please sign in to comment.