diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-23 19:50:56 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-23 19:50:56 +0000 |
commit | 5b0356613450ee1cc0bac9dc2f89db552d7008fd (patch) | |
tree | 85305735ee34d07a3c619f5edcb25c491f39a862 /perl-install/fs | |
parent | 1d7968318f8b42a85da193ab658ea106e8ee47d3 (diff) | |
download | drakx-5b0356613450ee1cc0bac9dc2f89db552d7008fd.tar drakx-5b0356613450ee1cc0bac9dc2f89db552d7008fd.tar.gz drakx-5b0356613450ee1cc0bac9dc2f89db552d7008fd.tar.bz2 drakx-5b0356613450ee1cc0bac9dc2f89db552d7008fd.tar.xz drakx-5b0356613450ee1cc0bac9dc2f89db552d7008fd.zip |
(main) add a FIXME note about a unused parameter since commit r265764
by pterjanib Feb 4 2010:
"partitioning wizard: offer to install on dmraid and existing lvm"
(spot by perl_checker)
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index 2cf03e86a..0b464da1c 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -504,6 +504,7 @@ sub main { my $mainbox = Gtk2::VBox->new; my @kinds = map { diskdrake::hd_gtk::hd2kind($_) } sort { $a->{is_removable} <=> $b->{is_removable} } @{ $all_hds->{hds} }; + # FIXME: raid2kind() doesn't take any arg: push @kinds, map { diskdrake::hd_gtk::raid2kind($_) } @{$all_hds->{raids}}; push @kinds, map { diskdrake::hd_gtk::lvm2kind($_) } @{$all_hds->{lvms}}; |