summaryrefslogtreecommitdiff
path: root/ecp/src/htable/htable.c
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2022-01-31 06:29:17 +0100
committerUros Majstorovic <majstor@majstor.org>2022-01-31 06:29:17 +0100
commitdd19d6f5c7e0b335301a3f3e3d21bffb8c83e558 (patch)
tree0841609c7e1c56cf95419d98c0074e6a2768acda /ecp/src/htable/htable.c
parent9f5c5c6263383cc7d6fb03f949465df5a02734b1 (diff)
hashtable bugfix
Diffstat (limited to 'ecp/src/htable/htable.c')
-rw-r--r--ecp/src/htable/htable.c5
1 files changed, 1 insertions, 4 deletions
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) {