aboutsummaryrefslogtreecommitdiffstats
path: root/progress.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-01-14 17:10:52 +0000
committerWayne Davison <wayned@samba.org>2006-01-14 17:10:52 +0000
commit24172e4b2f632d32a51a27a4faa6ce731e2059eb (patch)
treef8993ecbd6d0781f99238f8ebd601d072671de4e /progress.c
parentbeaf49540079b193da4639b48601e85365899904 (diff)
downloadandroid_external_rsync-24172e4b2f632d32a51a27a4faa6ce731e2059eb.tar.gz
android_external_rsync-24172e4b2f632d32a51a27a4faa6ce731e2059eb.tar.bz2
android_external_rsync-24172e4b2f632d32a51a27a4faa6ce731e2059eb.zip
If the --human-readable option is in effect, output the size of
each file in human-readable units instead of a raw byte count.
Diffstat (limited to 'progress.c')
-rw-r--r--progress.c4
1 files 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);
}