summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install/http.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/install/http.pm b/perl-install/install/http.pm
index a0c6b8175..91b27601c 100644
--- a/perl-install/install/http.pm
+++ b/perl-install/install/http.pm
@@ -51,9 +51,8 @@ sub get_file_and_size {
my $res = urpm::download::sync_url($urpm, $url, dir => $cachedir);
$res or die N("retrieval of [%s] failed", $file) . "\n";
- log::l("using $file (" . -s $file . ")");
open(my $f, $file);
- +( -s $file, $f);
+ ( -s $file, $f);
}
1;