From ab822df75cf6884051525b61dd3e21f2254994b4 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 12 Feb 2003 11:26:15 +0000 Subject: perl_checker compliance ("ref" now need parentheses in many case) --- perl-install/install_steps_stdio.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/install_steps_stdio.pm') diff --git a/perl-install/install_steps_stdio.pm b/perl-install/install_steps_stdio.pm index 66b104147..223c2f2b5 100644 --- a/perl-install/install_steps_stdio.pm +++ b/perl-install/install_steps_stdio.pm @@ -14,7 +14,7 @@ use lang; sub new($$) { my ($type, $o) = @_; - (bless {}, ref $type || $type)->SUPER::new($o); + (bless {}, ref($type) || $type)->SUPER::new($o); } sub enteringStep { -- cgit v1.2.1