Re-balance parenthesis.

This commit is contained in:
he 2003-11-07 10:41:55 +00:00
parent eb42e75cd8
commit 0b0101a884
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpuswitch.c,v 1.4 2003/11/04 10:33:15 dsl Exp $ */
/* $NetBSD: cpuswitch.c,v 1.5 2003/11/07 10:41:55 he Exp $ */
/*
* Copyright (c) 2000 Ben Harris.
@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: cpuswitch.c,v 1.4 2003/11/04 10:33:15 dsl Exp $");
__KERNEL_RCSID(0, "$NetBSD: cpuswitch.c,v 1.5 2003/11/07 10:41:55 he Exp $");
#include "opt_lockdebug.h"
@ -122,7 +122,7 @@ cpu_switch(struct lwp *l1, struct lwp *newl)
/* Check for Restartable Atomic Sequences. */
p2 = l2->l_proc;
if (!LIST_EMPTY(&p2->p_raslist) {
if (!LIST_EMPTY(&p2->p_raslist)) {
struct trapframe *tf = l2->l_addr->u_pcb.pcb_tf;
caddr_t pc;