Unused return value

This commit is contained in:
William King 2014-04-05 12:01:21 -07:00
parent 65fd534346
commit 658d938754
1 changed files with 0 additions and 1 deletions

View File

@ -1384,7 +1384,6 @@ unsigned int _ht_remove(_ht_node_t* ht, void* key) {
mb_assert(ht && key);
bucket = _ht_find(ht, key);
hash_code = ht->hash(ht, key);
bucket = ht->array[hash_code];
result = _ls_try_remove(bucket, key, _ls_cmp_extra);