From 4178f441928472c4944e6e2ef8db535a2a03f677 Mon Sep 17 00:00:00 2001 From: mycroft Date: Wed, 26 Oct 1994 01:32:51 +0000 Subject: [PATCH] Add a missing item to trap_types[]. --- sys/arch/i386/i386/trap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/arch/i386/i386/trap.c b/sys/arch/i386/i386/trap.c index 47fa021f4356..8f697532a2b9 100644 --- a/sys/arch/i386/i386/trap.c +++ b/sys/arch/i386/i386/trap.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)trap.c 7.4 (Berkeley) 5/13/91 - * $Id: trap.c,v 1.53 1994/10/20 04:43:26 cgd Exp $ + * $Id: trap.c,v 1.54 1994/10/26 01:32:51 mycroft Exp $ */ /* @@ -140,6 +140,7 @@ char *trap_type[] = { "invalid TSS fault", /* 15 T_TSSFLT */ "segment not present fault", /* 16 T_SEGNPFLT */ "stack fault", /* 17 T_STKFLT */ + "reserved trap", /* 18 T_RESERVED */ }; int trap_types = sizeof trap_type / sizeof trap_type[0];