diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-07 13:36:38 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-07 13:36:38 +0000 |
commit | 1e8d4a2ec9a62fb05079994cec2e03ef708cfe7c (patch) | |
tree | a2e891bb004f9733c6cb72aa55a99cca3e9459b9 /perl-install/fsedit.pm | |
parent | 8668011d44e09265ff5c1abf8acbced89892d8e9 (diff) | |
download | drakx-1e8d4a2ec9a62fb05079994cec2e03ef708cfe7c.tar drakx-1e8d4a2ec9a62fb05079994cec2e03ef708cfe7c.tar.gz drakx-1e8d4a2ec9a62fb05079994cec2e03ef708cfe7c.tar.bz2 drakx-1e8d4a2ec9a62fb05079994cec2e03ef708cfe7c.tar.xz drakx-1e8d4a2ec9a62fb05079994cec2e03ef708cfe7c.zip |
fix typo (operator priority related)
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 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 { |