Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 Feb 2013 11:49:21 +0000 (UTC)
From:      Pawel Jakub Dawidek <pjd@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r246908 - head/sys/kern
Message-ID:  <201302171149.r1HBnLFD004623@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)));
 }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302171149.r1HBnLFD004623>