svn commit: r246908 - head/sys/kern

Pawel Jakub Dawidek pjd at FreeBSD.org
Sun Feb 17 11:49:21 UTC 2013


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)));
 }
 


More information about the svn-src-all mailing list