diff options
| -rw-r--r-- | src/Propellor/Property/Parted.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Parted.hs b/src/Propellor/Property/Parted.hs index be12933d..97cf815e 100644 --- a/src/Propellor/Property/Parted.hs +++ b/src/Propellor/Property/Parted.hs @@ -111,7 +111,7 @@ calcPartedParamsSize (PartTable tabletype alignment parts) = -- partition size when something about the partition table -- does not allow the partition to end exactly at the position. partposfuzzy n - | n > 0 = show (fromIntegral n / 1000000) ++ "MB" + | n > 0 = show (fromIntegral n / 1000000 :: Double) ++ "MB" | otherwise = "1MB" -- Location of the start of the first partition, |
