mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-09-12 21:28:25 -04:00
Output the size of the file list using human_num().
This commit is contained in:
1 parent
54b0dfa0f7
commit
eb0144d79b
1 file changed
+2
-1
@@ -238,7 +238,8 @@ static void output_summary(void)
|
||||
human_num(stats.literal_data));
|
||||
rprintf(FINFO,"Matched data: %s bytes\n",
|
||||
human_num(stats.matched_data));
|
||||
rprintf(FINFO,"File list size: %d\n", stats.flist_size);
|
||||
rprintf(FINFO,"File list size: %s\n",
|
||||
human_num(stats.flist_size));
|
||||
if (stats.flist_buildtime) {
|
||||
rprintf(FINFO,
|
||||
"File list generation time: %.3f seconds\n",
|
||||
|
||||
Reference in new issue
Block a user