* Typo: if -> elsif.

This commit is contained in:
Eelco Dolstra 2003-07-29 14:42:14 +00:00
parent 8846465934
commit 40f32ae00a
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ my $invert = 0;
foreach my $arg (@ARGV) {
if ($arg eq "--keep-successors") { $keepsuccessors = 1; }
if ($arg eq "--invert") { $invert = 1; }
elsif ($arg eq "--invert") { $invert = 1; }
else { die "unknown argument `$arg'" };
}