diff options
author | Aaron Griffin <aaron@archlinux.org> | 2007-02-07 04:15:18 +0100 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2007-02-07 04:15:18 +0100 |
commit | ca4078b115b67ab5dc9250826b4ba63f75292b72 (patch) | |
tree | 8c3399b8a77587ec3dbde3c8611ac89f421b29bb | |
parent | da637c79e5637e1e6b1f5360c112147ebf85ccb5 (diff) | |
download | pacman-ca4078b115b67ab5dc9250826b4ba63f75292b72.tar.gz pacman-ca4078b115b67ab5dc9250826b4ba63f75292b72.tar.xz |
I broke the progress bars earlier. Put that back to normal.
-rw-r--r-- | src/pacman/downloadprog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/downloadprog.c b/src/pacman/downloadprog.c index 37aa52e5..e50323c6 100644 --- a/src/pacman/downloadprog.c +++ b/src/pacman/downloadprog.c @@ -73,7 +73,7 @@ void log_progress(const char *filename, int xfered, int total) timediff = get_update_timediff(0); } - if(percent > 0 && percent <= 100 && !timediff) { + if(percent > 0 && percent < 100 && !timediff) { /* only update the progress bar when * a) we first start * b) we end the progress |