Accidentally reverted this change before committing: Invalid cast in C++.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34421 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2009-12-01 17:26:22 +00:00
parent ebe97b7cee
commit fe01182ce4

View File

@ -426,7 +426,7 @@ hash_dump_table(struct hash_table* table)
dprintf("%6lu:", i);
while (element != NULL) {
dprintf(" %p", element);
element = NEXT(table, element);
element = (hash_element*)NEXT(table, element);
}
dprintf("\n");
}