1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

Show fractions of MiBs in download progress dialogs.

It is useful especially for slow links.
This commit is contained in:
witekfl 2012-05-08 13:29:20 +02:00
parent 12803e4075
commit e58fc7e2cb

View File

@ -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);
}