diff options
| author | nisimura <nisimura@NetBSD.org> | 2000-05-30 01:42:43 +0000 |
|---|---|---|
| committer | nisimura <nisimura@NetBSD.org> | 2000-05-30 01:42:43 +0000 |
| commit | 3d826a5c7eef852fa577dbfee1962f2a73bba5ff (patch) | |
| tree | a8ec6f39b26cc6175dfbfe0b3d69ffdeee946554 /sys | |
| parent | b67b90d7f90d7cc54f1ded152c03c9b6be1c8e20 (diff) | |
Add a missing closing parenthesis.
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/arch/mips/mips/vm_machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mips/mips/vm_machdep.c b/sys/arch/mips/mips/vm_machdep.c index 659c5778959..34cd7c739b4 100644 --- a/sys/arch/mips/mips/vm_machdep.c +++ b/sys/arch/mips/mips/vm_machdep.c @@ -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 @@ cpu_coredump(p, vp, cred, chdr) 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; |
