diff options
Diffstat (limited to 'ecp/src/htable/htable.c')
-rw-r--r-- | ecp/src/htable/htable.c | 5 |
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) { |