diff options
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index e7a5322f0..38d55ac89 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -458,8 +458,8 @@ sub formatMount_part { } sub formatMount_all { - my ($raids, $fstab, $prefix, $o_wait_message) = @_; - formatMount_part($_, $raids, $fstab, $prefix, $o_wait_message) + my ($raids, $fstab, $prefix, $wait_message) = @_; + formatMount_part($_, $raids, $fstab, $prefix, $wait_message) foreach sort { isLoopback($a) ? 1 : isSwap($a) ? -1 : 0 } grep { $_->{mntpoint} } @$fstab; #- ensure the link is there |