From 24172e4b2f632d32a51a27a4faa6ce731e2059eb Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 14 Jan 2006 17:10:52 +0000 Subject: [PATCH] If the --human-readable option is in effect, output the size of each file in human-readable units instead of a raw byte count. --- progress.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } -- 2.34.1