From dd19d6f5c7e0b335301a3f3e3d21bffb8c83e558 Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Mon, 31 Jan 2022 06:29:17 +0100 Subject: hashtable bugfix --- ecp/src/htable/htable.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'ecp/src/htable/htable.c') diff --git a/ecp/src/htable/htable.c b/ecp/src/htable/htable.c index 1fa79a3..104d2aa 100644 --- a/ecp/src/htable/htable.c +++ b/ecp/src/htable/htable.c @@ -5,10 +5,7 @@ #include "hashtable.h" void *ecp_ht_create(ECPContext *ctx) { - printf("NEFORE CREATE\n"); - void *r = hashtable_create(1000, (unsigned int (*)(void *))ecp_cr_dh_pub_hash_fn, (int (*)(void *, void *))ecp_cr_dh_pub_hash_eq); - printf("AFTER CREATE\n"); - return r; + return hashtable_create(1000, (unsigned int (*)(void *))ecp_cr_dh_pub_hash_fn, (int (*)(void *, void *))ecp_cr_dh_pub_hash_eq); } void ecp_ht_destroy(void *h) { -- cgit v1.2.3