Suppress signed/unsigned comparison in assert().

This commit is contained in:
Bård Skaflestad 2010-10-11 16:11:15 +00:00
parent 14050875f6
commit 3cb7fd0de0

View File

@ -112,7 +112,7 @@ hash_set_expand(size_t m, struct hash_set *t)
for (i = 0; i < t->m; i++) {
ret = hash_set_insert_core(t->s[i], m, s);
assert (ret < m);
assert ((size_t) ret < m);
}
p = t->s;