diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-08-25 15:43:29 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-08-25 15:43:29 +0000 |
commit | 43001bc10a59b83623422e6ff990d3f272c56b44 (patch) | |
tree | 616303bad2d006e7f9a5acbd4485a2c2f39a8aff | |
parent | 9c1da645feb786f039116a7edbaadec5a602edcc (diff) |
Post-regdump cleanup.
Gotta run, Beck is behind me with a large axe.
-rw-r--r-- | sys/arch/mac68k/mac68k/machdep.c | 4 | ||||
-rw-r--r-- | sys/arch/mac68k/mac68k/trap.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mac68k/mac68k/machdep.c b/sys/arch/mac68k/mac68k/machdep.c index d48a0de536c..226dd362788 100644 --- a/sys/arch/mac68k/mac68k/machdep.c +++ b/sys/arch/mac68k/mac68k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.79 2001/08/25 11:37:26 espie Exp $ */ +/* $OpenBSD: machdep.c,v 1.80 2001/08/25 15:43:28 miod Exp $ */ /* $NetBSD: machdep.c,v 1.207 1998/07/08 04:39:34 thorpej Exp $ */ /* @@ -1139,7 +1139,7 @@ nmihand(frame) if (nmihanddeep++) return; -/* regdump(&(frame->F_t), 128); +/* regdump(&(frame.F_t), 128); dumptrace(); */ #ifdef DIAGNOSTIC printf("Panic switch: PC is 0x%x.\n", frame.f_pc); diff --git a/sys/arch/mac68k/mac68k/trap.c b/sys/arch/mac68k/mac68k/trap.c index 6f67b0f3b13..eabc4195432 100644 --- a/sys/arch/mac68k/mac68k/trap.c +++ b/sys/arch/mac68k/mac68k/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.26 2001/08/25 11:37:26 espie Exp $ */ +/* $OpenBSD: trap.c,v 1.27 2001/08/25 15:43:28 miod Exp $ */ /* $NetBSD: trap.c,v 1.68 1998/12/22 08:47:07 scottr Exp $ */ /* @@ -312,7 +312,7 @@ trap(type, code, v, frame) printf("(press a key)\n"); (void)cngetc(); #endif } - regdump(&(frame->F_t), 128); + regdump(&(frame.F_t), 128); type &= ~T_USER; if ((u_int)type < trap_types) panic(trap_type[type]); |