X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=ltt-sessiond%2Fhashtable.c;fp=ltt-sessiond%2Fhashtable.c;h=6bca1dac010e1ae3457db98c9c254e9c01ba7935;hp=37dc01c9e413292b9298b96f334d9bfa92c73c9e;hb=48842b309b2000205367409c0f29ca40ec3e251c;hpb=d6b189345152f407360bc287997d38d30054bd2c diff --git a/ltt-sessiond/hashtable.c b/ltt-sessiond/hashtable.c index 37dc01c9e..6bca1dac0 100644 --- a/ltt-sessiond/hashtable.c +++ b/ltt-sessiond/hashtable.c @@ -30,7 +30,7 @@ struct cds_lfht *hashtable_new(unsigned long size) } return cds_lfht_new(hash_key, hash_compare_key, 0x42UL, - CDS_LFHT_AUTO_RESIZE, size, NULL); + size, size, CDS_LFHT_AUTO_RESIZE, NULL); } struct cds_lfht *hashtable_new_str(unsigned long size) @@ -40,7 +40,7 @@ struct cds_lfht *hashtable_new_str(unsigned long size) } return cds_lfht_new(hash_key_str, hash_compare_key_str, 0x42UL, - CDS_LFHT_AUTO_RESIZE, size, NULL); + size, size, CDS_LFHT_AUTO_RESIZE, NULL); } struct cds_lfht_node *hashtable_iter_get_node(struct cds_lfht_iter *iter)