diff options
| author | Wayne Davison <wayned@samba.org> | 2006-11-21 08:36:15 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2006-11-21 08:36:15 +0000 |
| commit | eb0144d79b4a52be68dd975cc64149ea4bd9080f (patch) | |
| tree | 844da93a6bcc1c162fa60327c78f4cd4a460c2ad /main.c | |
| parent | 54b0dfa0f7344fb8db25ef7ba118f7e9e0f9d83d (diff) | |
| download | android_external_rsync-eb0144d79b4a52be68dd975cc64149ea4bd9080f.tar.gz android_external_rsync-eb0144d79b4a52be68dd975cc64149ea4bd9080f.tar.bz2 android_external_rsync-eb0144d79b4a52be68dd975cc64149ea4bd9080f.zip | |
Output the size of the file list using human_num().
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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", |
