mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
Warning cleanup: Drop unneeded 'unsigned >= 0'
This commit is contained in:
parent
bd2ceeb74e
commit
160585b1bc
@ -1186,7 +1186,7 @@ mdb_search_page_root(MDB_db *bt, MDB_val *key,
|
||||
if (key)
|
||||
DPRINTF("following index %u for key %.*s",
|
||||
i, (int)key->mv_size, (char *)key->mv_data);
|
||||
assert(i >= 0 && i < NUMKEYS(mp));
|
||||
assert(i < NUMKEYS(mp));
|
||||
node = NODEPTR(mp, i);
|
||||
|
||||
if (cursor)
|
||||
|
Loading…
Reference in New Issue
Block a user