diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2006-11-09 15:39:36 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2006-11-09 15:39:36 +0000 |
commit | 077e8d3bdabdeee669d14883f3f87f93f533af2e (patch) | |
tree | 0cf01a14ecd2ee3c2e123fd706899849014fe67a /urpme | |
parent | 965aec63bcf5c9bb7c808b0d256e18056535b4d3 (diff) | |
download | urpmi-077e8d3bdabdeee669d14883f3f87f93f533af2e.tar urpmi-077e8d3bdabdeee669d14883f3f87f93f533af2e.tar.gz urpmi-077e8d3bdabdeee669d14883f3f87f93f533af2e.tar.bz2 urpmi-077e8d3bdabdeee669d14883f3f87f93f533af2e.tar.xz urpmi-077e8d3bdabdeee669d14883f3f87f93f533af2e.zip |
perl_checker compliance
Diffstat (limited to 'urpme')
-rw-r--r-- | urpme | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33,7 +33,7 @@ my $noexpr = N("Nn"); # Translator: Add here the keys which might be pressed in the "Yes"-case. my $yesexpr = N("Yy"); -sub usage { +sub usage() { print N("urpme version %s Copyright (C) 1999-2006 Mandriva. This is free software and may be redistributed under the terms of the GNU GPL. @@ -55,7 +55,7 @@ usage: exit(0); } -@ARGV or usage; +@ARGV or usage(); my @origARGV = @ARGV; urpm::args::parse_cmdline() or exit(1); @l = @ARGV; |