summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-04-01 20:13:28 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-04-01 20:13:28 +0000
commit5924810f0db8b0465a2153b8dfe075a9ae0e05cc (patch)
tree03aa05323a4ae5683e049989c17f6670414fea38 /sys/arch
parentd3be6f266c5e5875094659749e68d3a411bb04ed (diff)
FPE_INTOVF botch
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/i386/i386/svr4_machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/svr4_machdep.c b/sys/arch/i386/i386/svr4_machdep.c
index 77c4ba515ba..40add2c6cc3 100644
--- a/sys/arch/i386/i386/svr4_machdep.c
+++ b/sys/arch/i386/i386/svr4_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: svr4_machdep.c,v 1.11 1997/02/05 15:50:18 deraadt Exp $ */
+/* $OpenBSD: svr4_machdep.c,v 1.12 1997/04/01 20:13:27 deraadt Exp $ */
/* $NetBSD: svr4_machdep.c,v 1.24 1996/05/03 19:42:26 christos Exp $ */
/*
@@ -277,7 +277,7 @@ svr4_getsiginfo(si, sig, code, type, addr)
break;
case SIGFPE:
switch (type) {
- case T_ARITHTRAP:
+ case FPE_INTOVF:
si->svr4_si_code = SVR4_FPE_INTOVF;
si->svr4_si_trap = SVR4_T_DIVIDE;
break;