From b4c822960aaf5b4349895cc480e959b502f6855e Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Mon, 20 Jan 2020 21:29:17 +0100 Subject: 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 --- lib/common/writer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/common') diff --git a/lib/common/writer.c b/lib/common/writer.c index 1bbf6bd..b6adc59 100644 --- a/lib/common/writer.c +++ b/lib/common/writer.c @@ -136,7 +136,7 @@ int sqfs_writer_init(sqfs_writer_t *sqfs, const sqfs_writer_cfg_t *wrcfg) memset(&sqfs->stats, 0, sizeof(sqfs->stats)); register_stat_hooks(sqfs->data, &sqfs->stats); - sqfs->idtbl = sqfs_id_table_create(); + sqfs->idtbl = sqfs_id_table_create(0); if (sqfs->idtbl == NULL) { sqfs_perror(wrcfg->filename, "creating ID table", SQFS_ERROR_ALLOC); -- cgit v1.2.3