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:
parent
ebe97b7cee
commit
fe01182ce4
@ -426,7 +426,7 @@ hash_dump_table(struct hash_table* table)
|
|||||||
dprintf("%6lu:", i);
|
dprintf("%6lu:", i);
|
||||||
while (element != NULL) {
|
while (element != NULL) {
|
||||||
dprintf(" %p", element);
|
dprintf(" %p", element);
|
||||||
element = NEXT(table, element);
|
element = (hash_element*)NEXT(table, element);
|
||||||
}
|
}
|
||||||
dprintf("\n");
|
dprintf("\n");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user