Fix: calling ht_{hash, match}_enum with wrong argument
[lttng-tools.git] / src / bin / lttng-sessiond / ust-registry.c
index 46915a845d045fe9c8e1092ad7ba97b011a05501..d4edb207afc18ebdb2daebcea130715675bf2fce 100644 (file)
@@ -556,8 +556,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.026728 seconds and 4 git commands to generate.