From 5785b2ca6b6359efc044782c9ad5f589d0b5b14a Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Fri, 2 Sep 2005 10:59:49 +0000 Subject: cleanup --- perl-install/install_steps_interactive.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install/install_steps_interactive.pm') diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index f6aafcd86..cd73e1749 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -710,11 +710,11 @@ sub installPackages { my $w = $o->wait_message(N("Installing"), N("Preparing installation")); local *install_steps::installCallback = sub { - my ($data, $type, $id, $subtype, $_amount, $total_) = @_; + my ($packages, $type, $id, $subtype, $_amount, $total_) = @_; if ($type eq 'user' && $subtype eq 'install') { $total = $total_; } elsif ($type eq 'inst' && $subtype eq 'start') { - my $p = $data->{depslist}[$id]; + my $p = $packages->{depslist}[$id]; $w->set(N("Installing package %s\n%d%%", $p->name, $total && 100 * $current / $total)); $current += $p->size; } -- cgit v1.2.1