Sync with sys/i386/i386/trap.c revision 1.128.

This commit is contained in:
KATO Takenori 1998-08-28 12:46:28 +00:00
parent b45ff52639
commit de2c5240b0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38605

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)trap.c 7.4 (Berkeley) 5/13/91
* $Id: trap.c,v 1.49 1998/04/16 16:31:36 kato Exp $
* $Id: trap.c,v 1.50 1998/04/29 09:45:38 kato Exp $
*/
/*
@ -585,7 +585,7 @@ trap(frame)
uprintf("fatal process exception: %s",
trap_msg[type]);
if ((type == T_PAGEFLT) || (type == T_PROTFLT))
uprintf(", fault VA = 0x%x", eva);
uprintf(", fault VA = 0x%lx", eva);
uprintf("\n");
}
#endif