summaryrefslogtreecommitdiffstats
path: root/src/common.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2012-02-13 02:13:19 +0100
committerGravatar Nikias Bassen2012-02-13 02:13:19 +0100
commit9dd1484f561edf6f86f5e6cb128ddee93fbc9652 (patch)
treee04957003327079f279f580a4929970059a60106 /src/common.c
parentad7b4f149f203e174df2b0e49d3e22cac034339c (diff)
downloadidevicerestore-9dd1484f561edf6f86f5e6cb128ddee93fbc9652.tar.gz
idevicerestore-9dd1484f561edf6f86f5e6cb128ddee93fbc9652.tar.bz2
common: fix progress bar percentage value padding
Diffstat (limited to 'src/common.c')
-rw-r--r--src/common.c2
1 files changed, 1 insertions, 1 deletions
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);
}