소스 검색

svn: 1949

Bryan Drewery 21 년 전
부모
커밋
572fcab0df
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  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. */