diff options
-rw-r--r-- | mkfs/mkfs.c | 4 | ||||
-rw-r--r-- | tar/tar2sqfs.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/mkfs/mkfs.c b/mkfs/mkfs.c index b2bdec2..5759744 100644 --- a/mkfs/mkfs.c +++ b/mkfs/mkfs.c @@ -191,8 +191,10 @@ int main(int argc, char **argv) if (padd_file(outfd, super.bytes_used, opt.devblksz)) goto out_data; - if (!opt.quiet) + if (!opt.quiet) { + fstree_gen_file_list(&fs); sqfs_print_statistics(&fs, &super); + } status = EXIT_SUCCESS; out_data: diff --git a/tar/tar2sqfs.c b/tar/tar2sqfs.c index ed3aea1..dd602f5 100644 --- a/tar/tar2sqfs.c +++ b/tar/tar2sqfs.c @@ -437,8 +437,10 @@ int main(int argc, char **argv) if (padd_file(outfd, super.bytes_used, devblksize)) goto out; - if (!quiet) + if (!quiet) { + fstree_gen_file_list(&fs); sqfs_print_statistics(&fs, &super); + } status = EXIT_SUCCESS; out: |