diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-07-23 21:15:31 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-07-23 21:15:31 +0000 |
commit | 5a632fe532f355a2583970fefb2ed8ceec6c9460 (patch) | |
tree | 53c1ddbe41a4e8dad28ca4382794803ae177fbc2 /perl-install/common.pm | |
parent | bc25ea4a6ee8505a77972e2a723607735a4e19f9 (diff) | |
download | drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar.gz drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar.bz2 drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar.xz drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.zip |
no_comment
Diffstat (limited to 'perl-install/common.pm')
-rw-r--r-- | perl-install/common.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/common.pm b/perl-install/common.pm index feec2e844..429a18d35 100644 --- a/perl-install/common.pm +++ b/perl-install/common.pm @@ -20,7 +20,7 @@ $SECTORSIZE = 512; 1; -sub _ { my $s = shift; sprintf translate($s), @_ } +sub _ { my $s = shift @_; sprintf translate($s), @_ } sub __ { $_[0] } sub min { my $min = shift; grep { $_ < $min and $min = $_; } @_; $min } sub max { my $max = shift; grep { $_ > $max and $max = $_; } @_; $max } |