From 73dec828ad61d046d10648ddca5c89ce70352a7a Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Sun, 23 Jun 2019 02:19:27 +0200 Subject: Move fstree default option processing to fstree code Instead of decomposing a default string in gensquashfs option processing, move that to fstree_init instead and pass the option string directly to fstree_init. Signed-off-by: David Oberhollenzer --- tests/fstree_from_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/fstree_from_file.c') diff --git a/tests/fstree_from_file.c b/tests/fstree_from_file.c index f9a9e28..2728397 100644 --- a/tests/fstree_from_file.c +++ b/tests/fstree_from_file.c @@ -29,7 +29,7 @@ int main(void) fp = fmemopen(ptr, strlen(ptr), "r"); assert(fp != NULL); - assert(fstree_init(&fs, 512, 0, 0755, 0, 0) == 0); + assert(fstree_init(&fs, 512, NULL) == 0); assert(fstree_from_file(&fs, "testfile", fp) == 0); tree_node_sort_recursive(fs.root); -- cgit v1.2.3