From ad224b2703cee5271cc419a32d8400ed1ad45554 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Wed, 7 Feb 2007 05:25:45 +0000 Subject: * Fix total transfered size on download bar * Fix -Qm segfault * Minor query cleanup --- src/pacman/downloadprog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pacman/downloadprog.c') diff --git a/src/pacman/downloadprog.c b/src/pacman/downloadprog.c index e50323c6..c0115844 100644 --- a/src/pacman/downloadprog.c +++ b/src/pacman/downloadprog.c @@ -147,7 +147,7 @@ void log_progress(const char *filename, int xfered, int total) } printf(" %-*s %6d%c %#6.1f%c/s %02u:%02u:%02u", FILENAME_TRIM_LEN, fname, - xfered/1024, xfered_size, rate, rate_size, eta_h, eta_m, eta_s); + xfered, xfered_size, rate, rate_size, eta_h, eta_m, eta_s); free(fname); -- cgit v1.2.3