With the upcoming change for bug #2421 to show the number of mails in a maildir, update the format of small files. If a file is smaller than a certain size it is user unfriendly to print 0K or 0,1K as number of mails or as file size. Instead use the real number.
Signed-off-by: Olaf Hering <o...@aepfle.de> --- muttlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/muttlib.c b/muttlib.c index aed6d56..38f3230 100644 --- a/muttlib.c +++ b/muttlib.c @@ -874,8 +874,8 @@ void mutt_pretty_mailbox (char *s, size_t buflen) void mutt_pretty_size (char *s, size_t len, LOFF_T n) { - if (n == 0) - strfcpy (s, "0K", len); + if (n < 1000) + snprintf (s, len, "%d", (int)n); else if (n < 10189) /* 0.1K - 9.9K */ snprintf (s, len, "%3.1fK", (n < 103) ? 0.1 : n / 1024.0); else if (n < 1023949) /* 10K - 999K */