diff options
Diffstat (limited to 'perl-install/devices.pm')
-rw-r--r-- | perl-install/devices.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/devices.pm b/perl-install/devices.pm index 32c52904c..20e5c157b 100644 --- a/perl-install/devices.pm +++ b/perl-install/devices.pm @@ -27,7 +27,7 @@ sub size($) { for ($high = 1; $high > 0 && &$valid_offset($high); $high *= 2) { $low = $high } while ($low < $high - 1) { - $mid = int ($low + $high) / 2; + $mid = int(($low + $high) / 2); &$valid_offset($mid) ? $low : $high = $mid; } $low + 1; |