diff options
author | jh <jh@FreeBSD.org> | 2010-07-09 10:57:55 +0000 |
---|---|---|
committer | jh <jh@FreeBSD.org> | 2010-07-09 10:57:55 +0000 |
commit | d17116191886cf8a6a305752ac3680f4c08a9854 (patch) | |
tree | a1e4847de237a27c923bd83a70b12a28a004b8b6 | |
parent | ef22791b814f311d0e0230b63ad2e994640df9db (diff) | |
download | FreeBSD-src-d17116191886cf8a6a305752ac3680f4c08a9854.zip FreeBSD-src-d17116191886cf8a6a305752ac3680f4c08a9854.tar.gz |
Remove redundant high >= 0.
Reported by: rstone
-rw-r--r-- | sys/kern/subr_unit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_unit.c b/sys/kern/subr_unit.c index a66d9e9..3f961a2 100644 --- a/sys/kern/subr_unit.c +++ b/sys/kern/subr_unit.c @@ -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) |