Author: pjd
Date: Sun Feb 17 11:49:21 2013
New Revision: 246908
URL: http://svnweb.freebsd.org/changeset/base/246908

Log:
  Remove redundant parenthesis.

Modified:
  head/sys/kern/sys_capability.c

Modified: head/sys/kern/sys_capability.c
==============================================================================
--- head/sys/kern/sys_capability.c      Sun Feb 17 11:48:16 2013        
(r246907)
+++ head/sys/kern/sys_capability.c      Sun Feb 17 11:49:21 2013        
(r246908)
@@ -113,7 +113,7 @@ sys_cap_getmode(struct thread *td, struc
 {
        u_int i;
 
-       i = (IN_CAPABILITY_MODE(td)) ? 1 : 0;
+       i = IN_CAPABILITY_MODE(td) ? 1 : 0;
        return (copyout(&i, uap->modep, sizeof(i)));
 }
 
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to