From: Wayne Davison Date: Sat, 14 Jan 2006 17:10:52 +0000 (+0000) Subject: If the --human-readable option is in effect, output the size of X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/24172e4b2f632d32a51a27a4faa6ce731e2059eb If the --human-readable option is in effect, output the size of each file in human-readable units instead of a raw byte count. --- diff --git a/progress.c b/progress.c index 7daa28a1..db30a84a 100644 --- a/progress.c +++ b/progress.c @@ -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); }