diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2022-11-04 12:12:41 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2022-11-04 12:13:34 +0100 |
commit | f3d87d9b78e28e2a6ad2676cce2b064f0bca6bd1 (patch) | |
tree | 021ae842913a0569108b61028acd70256952a5ff /lib | |
parent | b934928842c12cf270106779d20f0f3bc54fa611 (diff) |
Fix typo in block count statistics
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/common/writer/finish.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common/writer/finish.c b/lib/common/writer/finish.c index e005628..c539579 100644 --- a/lib/common/writer/finish.c +++ b/lib/common/writer/finish.c @@ -39,7 +39,7 @@ static void print_statistics(const sqfs_super_t *super, fputc('\n', stdout); printf("Data blocks written: " PRI_U64 "\n", blocks_written); - printf("Out of which where fragment blocks: " PRI_U64 "\n", + printf("Out of which were fragment blocks: " PRI_U64 "\n", proc_stats->frag_block_count); printf("Duplicate blocks omitted: " PRI_U64 "\n", |