Removed unused variables.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24889 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2008-04-10 12:48:42 +00:00
parent cdde324d77
commit c28d31cce6

View File

@ -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;