mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
Remove redundant parenthesis.
This commit is contained in:
parent
49549b1894
commit
11b0cfe3cd
1 changed files with 1 additions and 1 deletions
|
|
@ -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)));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue