diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-29 01:45:59 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-29 01:46:39 +0200 |
commit | 89d0a57e2271db304fdf2ed7d31947c9a3418940 (patch) | |
tree | eb37df0fb3bbcc1415873bf1c679ab552f6c8e8d /tests/add_by_path.c | |
parent | db519e0d3a9fd5a8c35d66341b37def7be813d89 (diff) |
Cleanup: fstree no longer has any use for the block size
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/add_by_path.c')
-rw-r--r-- | tests/add_by_path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/add_by_path.c b/tests/add_by_path.c index afed438..af8dd88 100644 --- a/tests/add_by_path.c +++ b/tests/add_by_path.c @@ -21,7 +21,7 @@ int main(void) char *opts; opts = strdup("mode=0755,uid=21,gid=42"); - assert(fstree_init(&fs, 512, opts) == 0); + assert(fstree_init(&fs, opts) == 0); free(opts); memset(&sb, 0, sizeof(sb)); |