mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-28 02:29:34 -05:00
Warning cleanup: Drop unneeded 'unsigned >= 0'
This commit is contained in:
parent
bd2ceeb74e
commit
160585b1bc
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue