summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-01-06 10:10:12 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-01-06 10:10:12 +0000
commit0d5a1b01a3a92b910347fbbba77ef0b1e18ac3c5 (patch)
treedaacd4c6f90be73f4d195185f6d5fbf8cc18c1df /perl-install/install_steps.pm
parent3fadcba17f5e950e483c301490c174737f1fe852 (diff)
downloaddrakx-0d5a1b01a3a92b910347fbbba77ef0b1e18ac3c5.tar
drakx-0d5a1b01a3a92b910347fbbba77ef0b1e18ac3c5.tar.gz
drakx-0d5a1b01a3a92b910347fbbba77ef0b1e18ac3c5.tar.bz2
drakx-0d5a1b01a3a92b910347fbbba77ef0b1e18ac3c5.tar.xz
drakx-0d5a1b01a3a92b910347fbbba77ef0b1e18ac3c5.zip
fs::formatMount_all() parameter wait_message is no more optional (though you can give undef)
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index e7b34c637..528bb8334 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -281,7 +281,7 @@ sub choosePartitionsToFormat($$) {
sub formatMountPartitions {
my ($o) = @_;
- fs::formatMount_all($o->{all_hds}{raids}, $o->{fstab}, $o->{prefix});
+ fs::formatMount_all($o->{all_hds}{raids}, $o->{fstab}, $o->{prefix}, undef);
}
#------------------------------------------------------------------------------