diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-12-18 15:55:03 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-12-18 15:55:03 +0100 |
commit | 2777dfe050359c359233b2f00dfb5c3b2dba4ed6 (patch) | |
tree | e120ef9c10295c74dc8c3ec6dfa39aaa665e7f6b /mkfs | |
parent | caf350448c0020f95b9bfdd65770d86faf548549 (diff) |
Cleanup: merge the fstree post processing functions
Instead of having 3 different functions for sorting the tree, numbering
the nodes and generating a file list, that all have to be used in the
right order, this commit merges them into a single "fstree_post_process"
function.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'mkfs')
-rw-r--r-- | mkfs/mkfs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mkfs/mkfs.c b/mkfs/mkfs.c index ea01452..89215c6 100644 --- a/mkfs/mkfs.c +++ b/mkfs/mkfs.c @@ -232,8 +232,7 @@ int main(int argc, char **argv) sehnd = NULL; } - tree_node_sort_recursive(sqfs.fs.root); - fstree_gen_file_list(&sqfs.fs); + fstree_post_process(&sqfs.fs); if (pack_files(sqfs.data, &sqfs.fs, &sqfs.stats, &opt)) goto out; |