From 7cec37e0099f44382590d65d628c0b04283548dd Mon Sep 17 00:00:00 2001 From: lasers Date: Sun, 16 Dec 2018 11:08:20 -0600 Subject: [PATCH] conky.cc: fix short_units = False --- src/conky.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conky.cc b/src/conky.cc index 104d5804..4c4e6ff0 100644 --- a/src/conky.cc +++ b/src/conky.cc @@ -753,7 +753,7 @@ void human_readable(long long num, char *buf, int size) { format = "%.*f%.1s"; } else { width = 7; - format = "%.*f%-3s"; + format = "%.*f%-.3s"; } if (llabs(num) < 1000LL) {