From 2c16e7a55f80f0fc8e33af6f932dfe3ff6306688 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Fri, 31 Aug 2007 03:41:06 +0200 Subject: [PATCH] Fix format buf in dsh. --- clients/gui-shell/dsh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/gui-shell/dsh.c b/clients/gui-shell/dsh.c index 48d67e9..332e0df 100644 --- a/clients/gui-shell/dsh.c +++ b/clients/gui-shell/dsh.c @@ -233,7 +233,7 @@ void updatetooltip(void) if(t > 0) bprintf(buf, " (%i/%i)", i, a); if(bt > 0) - bprintf(buf, ", %.1f%%", (double)bc / (double)bt); + bprintf(buf, ", %.1f%%", ((double)bc / (double)bt) * 100.0); if(st != -1) bprintf(buf, ", %s/s", bytes2si(st)); addtobuf(buf, 0); -- 2.11.0