diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-05-27 05:40:19 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-05-27 05:40:19 +0000 |
commit | 2882881305004fa5aafe3f5afe0f68ffd09a2997 (patch) | |
tree | ba5fa5dbc50a244aff0c55b5dea9adeecf490461 /sys/arch | |
parent | f7a9ac5ec0eedfc718e8d5f94e5f1c8d0f621332 (diff) |
Fix warning in non-68040 case; jason@couch.com
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hp300/hp300/trap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/hp300/trap.c b/sys/arch/hp300/hp300/trap.c index 9052d1880c0..cdf04248bd3 100644 --- a/sys/arch/hp300/hp300/trap.c +++ b/sys/arch/hp300/hp300/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.13 1998/03/07 12:41:34 deraadt Exp $ */ +/* $OpenBSD: trap.c,v 1.14 1998/05/27 05:40:18 millert Exp $ */ /* $NetBSD: trap.c,v 1.55 1997/07/08 16:56:36 kleink Exp $ */ /* @@ -214,8 +214,8 @@ userret(p, fp, oticks, faultaddr, fromtrap) int fromtrap; { int sig, s; - union sigval sv; #ifdef M68040 + union sigval sv; int beenhere = 0; again: |