diff options
Diffstat (limited to 'Plugins')
-rw-r--r-- | Plugins/Monitors/Common.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugins/Monitors/Common.hs b/Plugins/Monitors/Common.hs index 7ac10c2..779c6f4 100644 --- a/Plugins/Monitors/Common.hs +++ b/Plugins/Monitors/Common.hs @@ -262,7 +262,7 @@ showDigits d n = floatToPercent :: Float -> String floatToPercent n = - showDigits 1 (n * 100) ++ "%" + showDigits 0 (n * 100) ++ "%" stringParser :: Pos -> B.ByteString -> String stringParser (x,y) = |