Cleanup: enable signed/unsigned compare compiler warning
[urcu.git] / doc / examples / rculfhash / cds_lfht_add_unique.c
index 68759713c44c608a19b8c5e48d3fd61c995e5595..23b29f2c0bf194b80715842dbbf252193f7cfee3 100644 (file)
@@ -38,7 +38,7 @@ int match(struct cds_lfht_node *ht_node, const void *_key)
 {
        struct mynode *node =
                caa_container_of(ht_node, struct mynode, node);
-       const unsigned int *key = _key;
+       const int *key = _key;
 
        return *key == node->value;
 }
This page took 0.024832 seconds and 4 git commands to generate.