Unused return value
This commit is contained in:
parent
65fd534346
commit
658d938754
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue