From dd00857495c8ec83cc2efdca407335f4512be32b Mon Sep 17 00:00:00 2001 From: Adrien Bourmault Date: Fri, 5 Apr 2024 23:00:00 +0200 Subject: [PATCH] src/model.c: fix bug with root path at init --- src/model.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model.c b/src/model.c index 3fecbc5..0593669 100644 --- a/src/model.c +++ b/src/model.c @@ -313,7 +313,7 @@ static bool model_init(struct model_t *self) return false; } - model_populate_hashTable(self, node, "/"); + model_populate_hashTable(self, node, ""); if (self->hashTable == NULL) { printerr("Can't create model hash table !\n");