diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-10-13 17:00:22 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-10-13 17:00:22 +0000 |
commit | 93eefdcec8aeef24e793653a4136bf4aeb2f1880 (patch) | |
tree | 49a701fba5b7fbe74b7f8dcb0042fd5d90e7e6a4 /urpm/main_loop.pm | |
parent | e1b29be2e9dfeebc1d831c62b6e0dc1d1a6853dc (diff) | |
download | urpmi-93eefdcec8aeef24e793653a4136bf4aeb2f1880.tar urpmi-93eefdcec8aeef24e793653a4136bf4aeb2f1880.tar.gz urpmi-93eefdcec8aeef24e793653a4136bf4aeb2f1880.tar.bz2 urpmi-93eefdcec8aeef24e793653a4136bf4aeb2f1880.tar.xz urpmi-93eefdcec8aeef24e793653a4136bf4aeb2f1880.zip |
perl_checker fixes
Diffstat (limited to 'urpm/main_loop.pm')
-rw-r--r-- | urpm/main_loop.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/main_loop.pm b/urpm/main_loop.pm index f6a5330f..dd519105 100644 --- a/urpm/main_loop.pm +++ b/urpm/main_loop.pm @@ -101,7 +101,7 @@ if ($urpm->{options}{'download-all'}) { my (undef, $available) = urpm::sys::df("$urpm->{cachedir}/rpms"); if (!$urpm->{options}{ignoresize}) { - my ($download_size) = urpm::get_pkgs::get_distant_media_filesize ($urpm, $blists, \%sources); + my ($download_size) = urpm::get_pkgs::get_distant_media_filesize($urpm, $blists, \%sources); if ($download_size >= $available*1000) { my $noexpr = N("Nn"); my $p = N("There is not enough space on your filesystem to download all packages (%s needed, %s available).\nAre you sure you want to continue?", formatXiB($download_size), formatXiB($available*1000)); |