summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2001-08-25 15:43:28 +0000
committermiod <miod@openbsd.org>2001-08-25 15:43:28 +0000
commit3b0ae5e9e3b1f1eecf38c1e5d04ade28332e74a2 (patch)
tree6941aa7b59504583560e806996dcede0f86f5ca9
parentRemove a dangling comma. (diff)
downloadwireguard-openbsd-3b0ae5e9e3b1f1eecf38c1e5d04ade28332e74a2.tar.xz
wireguard-openbsd-3b0ae5e9e3b1f1eecf38c1e5d04ade28332e74a2.zip
Post-regdump cleanup.
Gotta run, Beck is behind me with a large axe.
-rw-r--r--sys/arch/mac68k/mac68k/machdep.c4
-rw-r--r--sys/arch/mac68k/mac68k/trap.c4
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]);