diff options
Diffstat (limited to 'lib/fstree/fstree.c')
-rw-r--r-- | lib/fstree/fstree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fstree/fstree.c b/lib/fstree/fstree.c index 6955c17..febf8af 100644 --- a/lib/fstree/fstree.c +++ b/lib/fstree/fstree.c @@ -125,7 +125,7 @@ int fstree_init(fstree_t *fs, size_t block_size, char *defaults) return -1; } - fs->root = fstree_mknode(fs, NULL, "", 0, NULL, &fs->defaults); + fs->root = fstree_mknode(NULL, "", 0, NULL, &fs->defaults); if (fs->root == NULL) { perror("initializing file system tree"); |