diff --git a/sys/kern/kern_umtx.c b/sys/kern/kern_umtx.c index dfb01a095c1c..5ca17c0b69d2 100644 --- a/sys/kern/kern_umtx.c +++ b/sys/kern/kern_umtx.c @@ -2291,7 +2291,7 @@ static _umtx_op_func op_table[] = { int _umtx_op(struct thread *td, struct _umtx_op_args *uap) { - if (uap->op >= 0 && uap->op < UMTX_OP_MAX) + if ((unsigned)uap->op < UMTX_OP_MAX) return (*op_table[uap->op])(td, uap); return (EINVAL); } @@ -2414,7 +2414,7 @@ static _umtx_op_func op_table_compat32[] = { int freebsd32_umtx_op(struct thread *td, struct freebsd32_umtx_op_args *uap) { - if (uap->op >= 0 && uap->op < UMTX_OP_MAX) + if ((unsigned)uap->op < UMTX_OP_MAX) return (*op_table_compat32[uap->op])(td, (struct _umtx_op_args *)uap); return (EINVAL);