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 Add a missing closing parenthesis.



details:   https://anonhg.NetBSD.org/src/rev/34232fb9f29a
branches:  trunk
changeset: 486881:34232fb9f29a
user:      nisimura <nisimura%NetBSD.org@localhost>
date:      Tue May 30 01:42:43 2000 +0000

description:
Add a missing closing parenthesis.

diffstat:

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

diffs (27 lines):

diff -r 241f939039df -r 34232fb9f29a sys/arch/mips/mips/vm_machdep.c
--- a/sys/arch/mips/mips/vm_machdep.c   Tue May 30 01:29:59 2000 +0000
+++ b/sys/arch/mips/mips/vm_machdep.c   Tue May 30 01:42:43 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vm_machdep.c,v 1.61 2000/05/30 01:30:01 nisimura Exp $ */
+/*     $NetBSD: vm_machdep.c,v 1.62 2000/05/30 01:42:43 nisimura Exp $ */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -43,7 +43,7 @@
  */
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.61 2000/05/30 01:30:01 nisimura Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.62 2000/05/30 01:42:43 nisimura Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -215,7 +215,7 @@
        chdr->c_seghdrsize = ALIGN(sizeof(struct coreseg));
        chdr->c_cpusize = sizeof(struct cpustate);
 
-       if ((p->p_md.md_flags & MDP_FPUSED && p == fpcurproc)
+       if ((p->p_md.md_flags & MDP_FPUSED) && p == fpcurproc)
                savefpregs(p);
        cpustate.frame = *(struct frame *)p->p_md.md_regs;
        cpustate.fpregs = p->p_addr->u_pcb.pcb_fpregs;



Home | Main Index | Thread Index | Old Index