diff --git a/src/system/kernel/util/khash.c b/src/system/kernel/util/khash.c index 43ebf4d6f6..41c138a1ef 100644 --- a/src/system/kernel/util/khash.c +++ b/src/system/kernel/util/khash.c @@ -78,8 +78,6 @@ hash_grow(struct hash_table *table) uint32 newSize = get_prime_table_size(table->num_elements); struct hash_element **newTable; uint32 index; - void *start; - bool status; if (table->table_size >= newSize) return B_OK;