summaryrefslogtreecommitdiffstats
path: root/lib/MDV
diff options
context:
space:
mode:
Diffstat (limited to 'lib/MDV')
-rw-r--r--lib/MDV/Draklive/Media.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/MDV/Draklive/Media.pm b/lib/MDV/Draklive/Media.pm
index 278d463..4c7a7f4 100644
--- a/lib/MDV/Draklive/Media.pm
+++ b/lib/MDV/Draklive/Media.pm
@@ -59,7 +59,9 @@ sub supplement_partitions {
my $slash = find { $_->{mntpoint} eq '/' } @{$media->{partitions}};
$slash->{fs_type} ||= $media->get_media_setting('fs');
- $slash->{size} ||= $total_size / $common::SECTORSIZE;
+
+ my $correction = 1.2;
+ $slash->{size} ||= int($total_size * $correction) / $common::SECTORSIZE;
}
1;