Skip to content

Commit 2025a81

Browse files
authored
Fix typo (#15)
In Perl, the "last" command is used to exit a loop.
1 parent e15b3a0 commit 2025a81

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

foomatic-compiledb.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ for( $n = 0; $n < $opt_j; ++$n ){
100100
$pid = fork();
101101
if( ! defined( $pid ) ){
102102
warn( "cannot fork child process" );
103-
break;
103+
last;
104104
} elsif( ! $pid ){
105105
# Child, go on immediately
106106
@rcombos = @{$rcombos->[$n]};

0 commit comments

Comments
 (0)