Back out previous change; kernel longjmp() has 1 arg.

This commit is contained in:
scottr 1996-03-14 16:42:44 +00:00
parent 24dcca72bd
commit 2a5cf25e29
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap.c,v 1.34 1996/03/10 19:55:22 briggs Exp $ */
/* $NetBSD: trap.c,v 1.35 1996/03/14 16:42:44 scottr Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -321,7 +321,7 @@ copyfault:
extern int *nofault;
if (nofault) /* If we're probing. */
longjmp((label_t *) nofault, 0);
longjmp((label_t *) nofault);
if (type == T_ILLINST)
printf("Kernel Illegal Instruction trap.\n");
else