Skip to content

Commit

Permalink
conky.cc: fix short_units = False
Browse files Browse the repository at this point in the history
  • Loading branch information
lasers committed Dec 16, 2018
1 parent dfdd573 commit 7cec37e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conky.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 7cec37e

Please sign in to comment.