svn commit: r213236 - head/sys/kern

Ed Maste emaste at FreeBSD.org
Tue Sep 28 01:36:01 UTC 2010


Author: emaste
Date: Tue Sep 28 01:36:01 2010
New Revision: 213236
URL: http://svn.freebsd.org/changeset/base/213236

Log:
  Remove extra braces for style(9) (found while cleaning up an old work tree).

Modified:
  head/sys/kern/subr_trap.c

Modified: head/sys/kern/subr_trap.c
==============================================================================
--- head/sys/kern/subr_trap.c	Tue Sep 28 01:30:49 2010	(r213235)
+++ head/sys/kern/subr_trap.c	Tue Sep 28 01:36:01 2010	(r213236)
@@ -118,9 +118,8 @@ userret(struct thread *td, struct trapfr
 	/*
 	 * Charge system time if profiling.
 	 */
-	if (p->p_flag & P_PROFIL) {
+	if (p->p_flag & P_PROFIL)
 		addupc_task(td, TRAPF_PC(frame), td->td_pticks * psratio);
-	}
 	/*
 	 * Let the scheduler adjust our priority etc.
 	 */


More information about the svn-src-head mailing list