Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Sep 2010 01:36:01 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r213236 - head/sys/kern
Message-ID:  <201009280136.o8S1a1MI055573@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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.
 	 */



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