summaryrefslogtreecommitdiffstats
path: root/dimension/progressbar.c
diff options
context:
space:
mode:
Diffstat (limited to 'dimension/progressbar.c')
-rw-r--r--dimension/progressbar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dimension/progressbar.c b/dimension/progressbar.c
index 6abcbd6..a8bf11c 100644
--- a/dimension/progressbar.c
+++ b/dimension/progressbar.c
@@ -45,8 +45,8 @@ dmnsn_progressbar(const char *format, const dmnsn_progress *progress, ...)
width = ws.ws_col;
}
- unsigned int i, increments = width - (len % width);
- for (i = 0; i < increments; ++i) {
+ unsigned int increments = width - (len % width);
+ for (unsigned int i = 0; i < increments; ++i) {
dmnsn_wait_progress(progress, ((double)(i + 1))/increments);
printf(".");