diff options
Diffstat (limited to 'mkfs/mkfs.c')
-rw-r--r-- | mkfs/mkfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mkfs/mkfs.c b/mkfs/mkfs.c index 7c3fa28..019a233 100644 --- a/mkfs/mkfs.c +++ b/mkfs/mkfs.c @@ -114,8 +114,8 @@ int main(int argc, char **argv) if (write_data_to_image(&info)) goto out_cmp; - if (sqfs_write_inodes(&info.super, &info.fs, info.outfd, - info.cmp, &info.idtbl)) { + if (sqfs_serialize_fstree(info.outfd, &info.super, &info.fs, + info.cmp, &info.idtbl)) { goto out_cmp; } |