Bryan Drewery 21 anni fa
parent
commit
572fcab0df
1 ha cambiato i file con 0 aggiunte e 1 eliminazioni
  1. 0 1
      src/hash_table.c

+ 0 - 1
src/hash_table.c

@@ -113,7 +113,6 @@ int hash_table_insert(hash_table_t *ht, const void *key, void *data)
 
 	hash = ht->hash(key);
 	idx = hash % ht->max_rows;
-printf("idx: %d/%d\n", idx, ht->max_rows);
 	row = ht->rows+idx;
 
 	/* Allocate an entry. */