Skip to content

Commit

Permalink
TOOLS: PRINCE: Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Apr 29, 2018
1 parent f797404 commit 9ce63b3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions engines/prince/gen-po.pl
Expand Up @@ -53,7 +53,7 @@

exit;

sub process_inv {
sub process_inv($) {
my $file = shift;

open(*IN, $file) or die "Cannot open file $file: $!";
Expand All @@ -78,7 +78,7 @@ sub process_inv {
close IN;
}

sub process_varia {
sub process_varia($) {
my $file = shift;

open(*IN, $file) or die "Cannot open file $file: $!";
Expand All @@ -103,7 +103,7 @@ sub process_varia {
close IN;
}

sub process_mob {
sub process_mob($) {
my $file = shift;

open(*IN, $file) or die "Cannot open file $file: $!";
Expand Down Expand Up @@ -139,7 +139,7 @@ sub process_mob {
close IN;
}

sub process_credits {
sub process_credits($) {
my $file = shift;

open(*IN, $file) or die "Cannot open file $file: $!";
Expand Down

0 comments on commit 9ce63b3

Please sign in to comment.