diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-08-02 18:29:58 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-08-02 18:29:58 +0000 |
commit | 9f085d757dddbb47d9d9692bed97a911e9cc671f (patch) | |
tree | c809af799ba2c1854a8b06d36cde9cceac855891 | |
parent | e1dfe562e71e01062bfa92124c8c3c684a4e6280 (diff) | |
download | urpmi-9f085d757dddbb47d9d9692bed97a911e9cc671f.tar urpmi-9f085d757dddbb47d9d9692bed97a911e9cc671f.tar.gz urpmi-9f085d757dddbb47d9d9692bed97a911e9cc671f.tar.bz2 urpmi-9f085d757dddbb47d9d9692bed97a911e9cc671f.tar.xz urpmi-9f085d757dddbb47d9d9692bed97a911e9cc671f.zip |
get rid of some "Use of uninitialized value"
-rw-r--r-- | urpm/args.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/args.pm b/urpm/args.pm index 52576485..5405838d 100644 --- a/urpm/args.pm +++ b/urpm/args.pm @@ -29,7 +29,7 @@ Getopt::Long::Configure(@configuration); my $urpm; # stores the values of the command-line options -our %options; +our %options = (verbose => 0); # used by urpmf sub add_param_closure { |