diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-22 15:50:54 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-22 15:50:54 +0200 |
commit | 2d186619c6aefac9d006a360a508f94dfe1c331c (patch) | |
tree | 940edb576b0d4a7cde09999b9132bbb50fa810f9 | |
parent | 8946fa4b77fef3002d78bb1c5a19cc05c97a71c3 (diff) | |
download | conts-2d186619c6aefac9d006a360a508f94dfe1c331c.tar.gz conts-2d186619c6aefac9d006a360a508f94dfe1c331c.zip |
call MAP_CMP consistently
-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; } |