Commit eb0144d7 authored by Wayne Davison's avatar Wayne Davison

Output the size of the file list using human_num().

parent 54b0dfa0
......@@ -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",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment