Remove redundant high >= 0.
Reported by: rstone
This commit is contained in:
parent
2857dd23a4
commit
831aa555de
@ -326,7 +326,7 @@ new_unrhdr(int low, int high, struct mtx *mutex)
|
||||
{
|
||||
struct unrhdr *uh;
|
||||
|
||||
KASSERT(low >= 0 && high >= 0 && low <= high,
|
||||
KASSERT(low >= 0 && low <= high,
|
||||
("UNR: use error: new_unrhdr(%d, %d)", low, high));
|
||||
uh = Malloc(sizeof *uh);
|
||||
if (mutex != NULL)
|
||||
|
Loading…
x
Reference in New Issue
Block a user