aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl.c
diff options
context:
space:
mode:
authorGravatar Robert Manea <gotmor@gmail.com>2009-05-05 19:59:45 +0200
committerGravatar Robert Manea <gotmor@gmail.com>2009-05-05 19:59:45 +0200
commit95dbb08beef21b8d41c198edc5707c4fa0f07aa2 (patch)
tree14c7d8f28e0de3a1169de282848f50e700d78265 /uzbl.c
parent8d5988205fb924d0f962ae2341a9385a41341b17 (diff)
another small fix to build_progressbar_ascii()
Diffstat (limited to 'uzbl.c')
-rw-r--r--uzbl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uzbl.c b/uzbl.c
index c9e822f..f18899e 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -421,7 +421,7 @@ build_progressbar_ascii(int percent) {
l = (int)(l+.5)>=(int)l ? l+.5 : l;
g_string_append(bar, "[");
- for(i=1; i<(int)l; i++)
+ for(i=0; i<(int)l; i++)
g_string_append(bar, "=");
for(; i<width; i++)