summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-05-09 07:59:27 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-05-09 07:59:27 +0000
commitcf25f543647a78eda1b24eff05f214ca98437f1d (patch)
treec072e3e97286f194d692172bd37a5f4403814e50 /content
parent034ac2e7f75f679c0374555ab3fa681fdf72af4c (diff)
downloadnetsurf-cf25f543647a78eda1b24eff05f214ca98437f1d.tar.gz
netsurf-cf25f543647a78eda1b24eff05f214ca98437f1d.tar.bz2
Clear extraneous text when done..
svn path=/trunk/netsurf/; revision=12324
Diffstat (limited to 'content')
-rw-r--r--content/content.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/content.c b/content/content.c
index cb8ecd4b3..606f2a91b 100644
--- a/content/content.c
+++ b/content/content.c
@@ -242,8 +242,8 @@ void content_update_status(struct content *c)
} else {
unsigned int time = c->time;
snprintf(c->status_message, sizeof (c->status_message),
- "%s (%.1fs) %s", messages_get("Done"),
- (float) time / 100, c->sub_status);
+ "%s (%.1fs)", messages_get("Done"),
+ (float) time / 100);
}
/* LOG(("%s", c->status_message)); */