mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
Fix the '-Wtautological-compare' warning emitted by clang for comparing the
unsigned enum type with a negative value. Obtained from: NetApp
This commit is contained in:
parent
136cbf84ef
commit
3f23d3ca9f
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=248392
@ -937,7 +937,7 @@ vm_set_x2apic_state(struct vm *vm, int vcpuid, enum x2apic_state state)
|
||||
if (vcpuid < 0 || vcpuid >= VM_MAXCPU)
|
||||
return (EINVAL);
|
||||
|
||||
if (state < 0 || state >= X2APIC_STATE_LAST)
|
||||
if (state >= X2APIC_STATE_LAST)
|
||||
return (EINVAL);
|
||||
|
||||
vm->vcpu[vcpuid].x2apic_state = state;
|
||||
|
Loading…
Reference in New Issue
Block a user