diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-27 16:43:11 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-27 16:43:11 +0200 |
commit | 625368eb5bcb9954ad190af50962e6b7c2fd9c4c (patch) | |
tree | 48779d7e54b4fa3df83df39fff76b54d93aacedf /include/fstree.h | |
parent | 720023d968b24fe358fd4cfb002d8572f6cc96e7 (diff) |
Cleanup: remove most of the payload pointer magic from libfstree
Now that dir_info_t and file_info_t have reasonably small, use them in
tree_node_t directly instead of doing pointer arithmetic magic on the
payload area.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/fstree.h')
-rw-r--r-- | include/fstree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fstree.h b/include/fstree.h index c9ff574..11da854 100644 --- a/include/fstree.h +++ b/include/fstree.h @@ -124,8 +124,8 @@ struct tree_node_t { /* Type specific data. Pointers are into payload area blow. */ union { - dir_info_t *dir; - file_info_t *file; + dir_info_t dir; + file_info_t file; char *slink_target; uint64_t devno; } data; |