diff options
author | Antoine Ginies <aginies@mandriva.com> | 2011-03-08 16:31:42 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2011-03-08 16:31:42 +0000 |
commit | 61e4e4c0f0d56d7025cfec182f413f71725ae95c (patch) | |
tree | 539c2ee02b3f8ee6aa14d194688f38d81ca9a144 /perl-install/fsedit.pm | |
parent | ed8e52035896ecb16858a6ed6793d03c2155e86f (diff) | |
download | drakx-61e4e4c0f0d56d7025cfec182f413f71725ae95c.tar drakx-61e4e4c0f0d56d7025cfec182f413f71725ae95c.tar.gz drakx-61e4e4c0f0d56d7025cfec182f413f71725ae95c.tar.bz2 drakx-61e4e4c0f0d56d7025cfec182f413f71725ae95c.tar.xz drakx-61e4e4c0f0d56d7025cfec182f413f71725ae95c.zip |
fix parameter order
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 4380ab12a..8c0e5ee9e 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -589,7 +589,7 @@ sub change_type { sub partition_table_clear_and_initialize { my ($lvms, $hd, $o_in, $o_type, $b_warn) = @_; $hd->clear_existing; - partition_table_initialize($lvms, $hd, $o_in, $o_type, $b_warn); + partition_table_initialize($lvms, $hd, $o_in, $b_warn, $o_type); } sub partition_table_initialize { |