svn commit: r246904 - head/sys/kern

Pawel Jakub Dawidek pjd at FreeBSD.org
Sun Feb 17 11:47:02 UTC 2013


Author: pjd
Date: Sun Feb 17 11:47:01 2013
New Revision: 246904
URL: http://svnweb.freebsd.org/changeset/base/246904

Log:
  Remove redundant parenthesis.

Modified:
  head/sys/kern/kern_fork.c

Modified: head/sys/kern/kern_fork.c
==============================================================================
--- head/sys/kern/kern_fork.c	Sun Feb 17 11:36:41 2013	(r246903)
+++ head/sys/kern/kern_fork.c	Sun Feb 17 11:47:01 2013	(r246904)
@@ -942,7 +942,7 @@ fail1:
 		vmspace_free(vm2);
 	uma_zfree(proc_zone, newproc);
 #ifdef PROCDESC
-	if (((flags & RFPROCDESC) != 0) && (fp_procdesc != NULL)) {
+	if ((flags & RFPROCDESC) != 0 && fp_procdesc != NULL) {
 		fdclose(td->td_proc->p_fd, fp_procdesc, *procdescp, td);
 		fdrop(fp_procdesc, td);
 	}


More information about the svn-src-all mailing list