From b2e8081cc33725606d4ab57654ff106947b7bd55 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 4 Mar 2003 11:18:13 +0000 Subject: fix typo --- perl-install/install_steps_interactive.pm | 7 +++---- 1 file changed, 3 insertions(+), 4 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 75146eebb..f998f798d 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -967,15 +967,14 @@ sub summary { }; } - foreach (grep { $_->{driver} =~ /(bttv|saa7134)/ } detect_devices::probeall()) { - my $driver = $_->{driver}; + foreach my $tv (grep { $_->{driver} =~ /(bttv|saa7134)/ } detect_devices::probeall()) { push @l, { group => N("Hardware"), label => N("TV card"), - val => sub { $_->{description} }, + val => sub { $tv->{description} }, clicked => sub { require harddrake::v4l; - harddrake::v4l::config($o, $driver); + harddrake::v4l::config($o, $tv->{driver}); } }; } -- cgit v1.2.1