From e58fc7e2cbb79551b0332a790ea47839e5e04518 Mon Sep 17 00:00:00 2001 From: witekfl Date: Tue, 8 May 2012 13:29:20 +0200 Subject: [PATCH] Show fractions of MiBs in download progress dialogs. It is useful especially for slow links. --- src/util/conv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/conv.c b/src/util/conv.c index bcbb1ce5d..5ff830c05 100644 --- a/src/util/conv.c +++ b/src/util/conv.c @@ -193,7 +193,7 @@ add_xnum_to_string(struct string *string, long long xnum) add_long_to_string(string, xnum); - if (xnum < 10 && d != -1) { + if (d != -1) { add_char_to_string(string, '.'); add_long_to_string(string, d); }