From 2d28788fe8b5215cacbc500fd98e64799aa1a329 Mon Sep 17 00:00:00 2001 From: emaste <emaste@FreeBSD.org> Date: Tue, 28 Sep 2010 01:36:01 +0000 Subject: Remove extra braces for style(9) (found while cleaning up an old work tree). --- sys/kern/subr_trap.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sys/kern/subr_trap.c') diff --git a/sys/kern/subr_trap.c b/sys/kern/subr_trap.c index 3884abf..ac55cea 100644 --- a/sys/kern/subr_trap.c +++ b/sys/kern/subr_trap.c @@ -118,9 +118,8 @@ userret(struct thread *td, struct trapframe *frame) /* * 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. */ -- cgit v1.1