Remove redundant high >= 0.

Reported by:	rstone
This commit is contained in:
Jaakko Heinonen 2010-07-09 10:57:55 +00:00
parent 2857dd23a4
commit 831aa555de
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=209844

View File

@ -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)