Fix: calling ht_{hash, match}_enum with wrong argument
[lttng-tools.git] / src / bin / lttng-sessiond / ust-registry.c
index 61b5c59f222415f90a846f17932ae0747074b433..0c944a73b7822d93bd2ca499f72bfb46ff2bd8a8 100644 (file)
@@ -558,8 +558,8 @@ struct ust_registry_enum *
        struct lttng_ht_iter iter;
 
        cds_lfht_lookup(session->enums->ht,
-                       ht_hash_enum((void *) &reg_enum_lookup, lttng_ht_seed),
-                       ht_match_enum, &reg_enum_lookup, &iter.iter);
+                       ht_hash_enum((void *) reg_enum_lookup, lttng_ht_seed),
+                       ht_match_enum, reg_enum_lookup, &iter.iter);
        node = lttng_ht_iter_get_node_str(&iter);
        if (!node) {
                goto end;
This page took 0.02424 seconds and 4 git commands to generate.