Fix FP usage.
authorMartin Pool <mbp@samba.org>
Sun, 2 Dec 2001 14:12:03 +0000 (14:12 +0000)
committerMartin Pool <mbp@samba.org>
Sun, 2 Dec 2001 14:12:03 +0000 (14:12 +0000)
util.c

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