From 259a98985b4f93347923d1b2c3aaa535397aaa89 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Thu, 11 Jun 2020 01:57:26 +0200 Subject: Add flags to functions that might logically be expanded in the future Signed-off-by: David Oberhollenzer --- bin/sqfsdiff/sqfsdiff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/sqfsdiff') diff --git a/bin/sqfsdiff/sqfsdiff.c b/bin/sqfsdiff/sqfsdiff.c index b543c00..0673f8d 100644 --- a/bin/sqfsdiff/sqfsdiff.c +++ b/bin/sqfsdiff/sqfsdiff.c @@ -67,7 +67,7 @@ static int open_sfqs(sqfs_state_t *state, const char *path) } state->dr = sqfs_dir_reader_create(&state->super, state->cmp, - state->file); + state->file, 0); if (state->dr == NULL) { sqfs_perror(path, "creating directory reader", SQFS_ERROR_ALLOC); @@ -83,7 +83,7 @@ static int open_sfqs(sqfs_state_t *state, const char *path) state->data = sqfs_data_reader_create(state->file, state->super.block_size, - state->cmp); + state->cmp, 0); if (state->data == NULL) { sqfs_perror(path, "creating data reader", SQFS_ERROR_ALLOC); goto fail_tree; -- cgit v1.2.3