diff options
author | Wayne Davison <wayned@samba.org> | 2006-01-14 17:10:52 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-01-14 17:10:52 +0000 |
commit | 24172e4b2f632d32a51a27a4faa6ce731e2059eb (patch) | |
tree | f8993ecbd6d0781f99238f8ebd601d072671de4e /progress.c | |
parent | beaf49540079b193da4639b48601e85365899904 (diff) | |
download | rsync-24172e4b2f632d32a51a27a4faa6ce731e2059eb.tar.gz rsync-24172e4b2f632d32a51a27a4faa6ce731e2059eb.tar.bz2 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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } |