aboutsummaryrefslogtreecommitdiff
path: root/lib/common/src/writer/serialize_fstree.c
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-04-19 08:51:26 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-04-19 11:17:51 +0200
commit75fb524b5702bca4f8467309f7d95f9937ec6683 (patch)
treeb47a037c0f24873a9fc5b3f5b08583c9ad90de08 /lib/common/src/writer/serialize_fstree.c
parenta13df03fddd9499960d4653aaee0970983b65f73 (diff)
libfstree: get rid of dir_info_t
The single boolean created_implicitly can be replaced with a general purpose flag field. The "children" pointer can then be hoisted directly into the data union of tree_node_t. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/common/src/writer/serialize_fstree.c')
-rw-r--r--lib/common/src/writer/serialize_fstree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common/src/writer/serialize_fstree.c b/lib/common/src/writer/serialize_fstree.c
index 9776874..7ecd850 100644
--- a/lib/common/src/writer/serialize_fstree.c
+++ b/lib/common/src/writer/serialize_fstree.c
@@ -70,7 +70,7 @@ static sqfs_inode_generic_t *write_dir_entries(const char *filename,
if (ret)
goto fail;
- for (it = node->data.dir.children; it != NULL; it = it->next) {
+ for (it = node->data.children; it != NULL; it = it->next) {
if (it->mode == FSTREE_MODE_HARD_LINK_RESOLVED) {
tgt = it->data.target_node;
} else {