Remove redundant parenthesis.

This commit is contained in:
Pawel Jakub Dawidek 2013-02-17 11:49:21 +00:00
parent 49549b1894
commit 11b0cfe3cd

View File

@ -113,7 +113,7 @@ sys_cap_getmode(struct thread *td, struct cap_getmode_args *uap)
{
u_int i;
i = (IN_CAPABILITY_MODE(td)) ? 1 : 0;
i = IN_CAPABILITY_MODE(td) ? 1 : 0;
return (copyout(&i, uap->modep, sizeof(i)));
}