1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-15 17:47:09 +00:00

conky.cc: fix short_units = False

This commit is contained in:
lasers 2018-12-16 11:08:20 -06:00
parent dfdd573043
commit 7cec37e009

View File

@ -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) {