diff options
-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 cc77b6c19..1ece4a756 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -449,7 +449,7 @@ sub computeSize { } my $size = int min($max, $best->{size} + $free_space * ($tot_ratios && $best->{ratio} / $tot_ratios)); #- verify other entry can fill the hole - any { $_->{size} < $max - $size } @L ? $size : $max; + (any { $_->{size} < $max - $size } @L) ? $size : $max; } sub suggest_part { |