diff options
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index b1c842e16..099f44659 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -168,7 +168,7 @@ sub choosePartitionsToFormat($$) { sub formatPartitions { my $o = shift; foreach (@_) { - raid::format_part($o->{raid}, $_) if $_->{toFormat}; + fs::format_part($o->{raid}, $_) if $_->{toFormat}; } } |