If the --human-readable option is in effect, output the size of
authorWayne Davison <wayned@samba.org>
Sat, 14 Jan 2006 17:10:52 +0000 (17:10 +0000)
committerWayne Davison <wayned@samba.org>
Sat, 14 Jan 2006 17:10:52 +0000 (17:10 +0000)
each file in human-readable units instead of a raw byte count.

progress.c

index 7daa28a..db30a84 100644 (file)
@@ -103,8 +103,8 @@ static void rprint_progress(OFF_T ofs, OFF_T size, struct timeval *now,
                        stats.num_files);
        } else
                strcpy(eol, "\r");
-       rprintf(FINFO, "%12.0f %3d%% %7.2f%s %4d:%02d:%02d%s",
-               (double) ofs, pct, rate, units,
+       rprintf(FINFO, "%12s %3d%% %7.2f%s %4d:%02d:%02d%s",
+               human_num(ofs), pct, rate, units,
                remain_h, remain_m, remain_s, eol);
 }