diff options
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 4d0b362c7..6de423d50 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -78,7 +78,11 @@ Continue at your own risk."), formatError($@) ]) if $@; } } -sub errorInStep($$) { print "error :(\n"; c::_exit(1) } +sub errorInStep { + my ($_o, $_err) = @_; + print "error :(\n"; + c::_exit(1); +} sub kill_action {} #-###################################################################################### |