summaryrefslogtreecommitdiffstats
path: root/perl-install/c.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/c.pm')
-rw-r--r--perl-install/c.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/c.pm b/perl-install/c.pm
index aa03b9b1e..0d5fe8f00 100644
--- a/perl-install/c.pm
+++ b/perl-install/c.pm
@@ -13,7 +13,7 @@ sub AUTOLOAD {
die("can't find function $AUTOLOAD\n" . backtrace()) :
die($err);
}
- wantarray ? @l : $l[0];
+ wantarray() ? @l : $l[0];
}
1;