diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-07-03 04:11:23 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-07-03 04:11:23 +0000 |
commit | 666b8ee0bd1f8bba279ba8a6b2a8a06c8d905f90 (patch) | |
tree | 0ac81040ddf08f0e14903660634b1d4c7ced5661 /perl-install/bootloader.pm | |
parent | db809f558e467ef976dfe4ef435269b4e34243c5 (diff) | |
download | drakx-666b8ee0bd1f8bba279ba8a6b2a8a06c8d905f90.tar drakx-666b8ee0bd1f8bba279ba8a6b2a8a06c8d905f90.tar.gz drakx-666b8ee0bd1f8bba279ba8a6b2a8a06c8d905f90.tar.bz2 drakx-666b8ee0bd1f8bba279ba8a6b2a8a06c8d905f90.tar.xz drakx-666b8ee0bd1f8bba279ba8a6b2a8a06c8d905f90.zip |
fix typo
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 1eb0734dd..56650468b 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -1061,7 +1061,7 @@ sub device_string2grub { my ($dev, $legacy_floppies, $sorted_hds) = @_; if (my $device = fs::device2part($dev, [ @$sorted_hds, fsedit::get_fstab(@$sorted_hds) ])) { device2grub($device, $sorted_hds); - } elsif (my $floppy = fs::device2part($dev, @$legacy_floppies)) { + } elsif (my $floppy = fs::device2part($dev, $legacy_floppies)) { my $bios = find_index { $floppy eq $_ } @$legacy_floppies; "(fd$bios)"; } else { |