Oops, units bug.
authorMartin Pool <mbp@samba.org>
Sun, 2 Dec 2001 13:58:03 +0000 (13:58 +0000)
committerMartin Pool <mbp@samba.org>
Sun, 2 Dec 2001 13:58:03 +0000 (13:58 +0000)
util.c

diff --git a/util.c b/util.c
index 6deb22f..1372ed1 100644 (file)
--- a/util.c
+++ b/util.c
@@ -837,7 +837,7 @@ static void rprint_progress(OFF_T ofs, OFF_T size, struct timeval *now,
     unsigned long diff = msdiff(&start_time, now);
     double        rate = diff ? ((ofs-start_ofs) / diff) * 1000.0/1024.0 : 0;
     const char    *units, *rem_units;
-    double        remain = rate ? (size-ofs) / rate : 0.0;
+    double        remain = rate ? (size-ofs) / rate / 1000.0: 0.0;
     int          remain_h, remain_m, remain_s;
 
     if (rate > 1024*1024) {