diff options
-rw-r--r-- | include/conts/map.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |