From 9dd1484f561edf6f86f5e6cb128ddee93fbc9652 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 13 Feb 2012 02:13:19 +0100 Subject: common: fix progress bar percentage value padding --- src/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common.c') diff --git a/src/common.c b/src/common.c index 46e66ef..ead60b4 100644 --- a/src/common.c +++ b/src/common.c @@ -105,7 +105,7 @@ void print_progress_bar(double progress) { if(i < progress / 2) info("="); else info(" "); } - info("] %3.1f%%", progress); + info("] %5.1f%%", progress); if(progress == 100) info("\n"); fflush(stdout); } -- cgit v1.1-32-gdbae