diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-01-20 21:29:17 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-01-20 21:29:17 +0100 |
commit | b4c822960aaf5b4349895cc480e959b502f6855e (patch) | |
tree | e5aab5b7e23818d9cd5a6367ca751c9c0a43f50d /difftool | |
parent | cf0b7d7f165c40b8501dd3ede27d0073ef4c2f84 (diff) |
Add a flag field to the id table create function
Just to be safe in case there needs to be an extension
in the future.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'difftool')
-rw-r--r-- | difftool/sqfsdiff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/difftool/sqfsdiff.c b/difftool/sqfsdiff.c index 1c80812..58ddb4b 100644 --- a/difftool/sqfsdiff.c +++ b/difftool/sqfsdiff.c @@ -59,7 +59,7 @@ static int open_sfqs(sqfs_state_t *state, const char *path) } } - state->idtbl = sqfs_id_table_create(); + state->idtbl = sqfs_id_table_create(0); if (state->idtbl == NULL) { sqfs_perror(path, "creating ID table", SQFS_ERROR_ALLOC); goto fail_cmp; |