Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 1335 → Rev 1336

//uspace/trunk/libadt/generic/hash_table.c
106,10 → 106,6
chain = h->op->hash(key);
assert(chain < h->entries);
/*
* The hash table is not redundant.
* Check if the keys are not in place already.
*/
for (cur = h->entry[chain].next; cur != &h->entry[chain]; cur = cur->next) {
if (h->op->compare(key, h->max_keys, cur)) {
/*