From 2d186619c6aefac9d006a360a508f94dfe1c331c Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 22 Mar 2025 15:50:54 +0200 Subject: call MAP_CMP consistently --- include/conts/map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/conts/map.h b/include/conts/map.h index 31334a0..5ffdff1 100644 --- a/include/conts/map.h +++ b/include/conts/map.h @@ -124,7 +124,7 @@ static inline MAP_TYPE *MAP(insert)(struct MAP_ROOT *root, MAP_KEY key, MAP_TYPE } /* there already exists a node like this */ - if (node->hash == hash && MAP_CMP(&node->t.key, &key) == 0) + if (node->hash == hash && MAP_CMP(node->t.key, key) == 0) return &node->t.data; } -- cgit v1.2.3