diff --git a/services/utils/init_hashmap.c b/services/utils/init_hashmap.c index c8293a08595a50ab0f68f5d84fe830eac8235661..a9cebc0b2b51485ae0e4bb275e89112ad7f97c40 100644 --- a/services/utils/init_hashmap.c +++ b/services/utils/init_hashmap.c @@ -60,6 +60,7 @@ static HashNode *GetHashNodeByNode(const HashTab *tab, const HashNode *root, con static HashNode *GetHashNodeByKey(const HashTab *tab, const HashNode *root, const void *key, HashKeyCompare keyCompare) { + (void)tab; HashNode *node = (HashNode *)root; while (node != NULL) { int ret = keyCompare(node, key);