Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/mips/mips Try using matching numbers of open and cl...



details:   https://anonhg.NetBSD.org/src/rev/ed64fadf066a
branches:  trunk
changeset: 554983:ed64fadf066a
user:      simonb <simonb%NetBSD.org@localhost>
date:      Thu Nov 06 04:17:11 2003 +0000

description:
Try using matching numbers of open and close parentheses to make this
compile again.

diffstat:

 sys/arch/mips/mips/trap.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 608d607a98ec -r ed64fadf066a sys/arch/mips/mips/trap.c
--- a/sys/arch/mips/mips/trap.c Thu Nov 06 02:46:44 2003 +0000
+++ b/sys/arch/mips/mips/trap.c Thu Nov 06 04:17:11 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.187 2003/11/04 10:33:15 dsl Exp $   */
+/*     $NetBSD: trap.c,v 1.188 2003/11/06 04:17:11 simonb Exp $        */
 
 /*
  * Copyright (c) 1992, 1993
@@ -78,7 +78,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.187 2003/11/04 10:33:15 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.188 2003/11/06 04:17:11 simonb Exp $");
 
 #include "opt_cputype.h"       /* which mips CPU levels do we support? */
 #include "opt_ktrace.h"
@@ -688,7 +688,7 @@
         * We can't single-step into a RAS.  Check if we're in
         * a RAS, and set the breakpoint just past it.
         */
-       if (!LIST_EMPTY(&p->p_raslist) {
+       if (!LIST_EMPTY(&p->p_raslist)) {
                while (ras_lookup(p, (caddr_t)va) != (caddr_t)-1)
                        va += sizeof(int);
        }



Home | Main Index | Thread Index | Old Index