Skip to content
Snippets Groups Projects
Commit 7bb90fa5 authored by Craig Tiller's avatar Craig Tiller
Browse files

Respond to review comments

parent 824da1cc
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ static size_t grpc_slice_hash_table_find_index(
if (is_empty(&table->entries[idx])) {
return find_empty ? idx : table->size;
}
if (grpc_slice_cmp(table->entries[idx].key, key) == 0) {
if (grpc_slice_eq(table->entries[idx].key, key)) {
return idx;
}
}
......
......@@ -66,7 +66,6 @@ grpc_slice_hash_table *grpc_slice_hash_table_create(
size_t num_entries, grpc_slice_hash_table_entry *entries);
grpc_slice_hash_table *grpc_slice_hash_table_ref(grpc_slice_hash_table *table);
/** Returns 1 when \a table is destroyed. */
void grpc_slice_hash_table_unref(grpc_exec_ctx *exec_ctx,
grpc_slice_hash_table *table);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment