summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
Diffstat (limited to 'content')
-rw-r--r--content/fetchcache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/content/fetchcache.c b/content/fetchcache.c
index c8c10db01..23f8fc19a 100644
--- a/content/fetchcache.c
+++ b/content/fetchcache.c
@@ -174,13 +174,13 @@ void fetchcache_callback(fetch_msg msg, void *p, char *data, unsigned long size)
if (c->total_size)
sprintf(c->status_message,
messages_get("RecPercent"),
- c->source_size + size, c->total_size,
- (unsigned int) ((c->source_size + size) *
- 100.0 / c->total_size));
+ human_friendly_bytesize(c->source_size + size),
+ human_friendly_bytesize(c->total_size),
+ (unsigned int) ((c->source_size + size) * 100.0 / c->total_size));
else
sprintf(c->status_message,
messages_get("Received"),
- c->source_size + size);
+ human_friendly_bytesize(c->source_size + size));
content_broadcast(c, CONTENT_MSG_STATUS, msg_data);
content_process_data(c, data, size);
break;