Ok, now this is correct (even simple fixes sometimes ain't so simple :)

This commit is contained in:
Jordan K. Hubbard 1996-03-23 21:41:00 +00:00
parent cdf642d171
commit 60743d0a33
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14774

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)subr_prf.c 8.3 (Berkeley) 1/21/94
* $Id: subr_prf.c,v 1.31 1996/03/23 11:31:16 phk Exp $
* $Id: subr_prf.c,v 1.32 1996/03/23 21:23:43 jkh Exp $
*/
#include "opt_ddb.h"
@ -120,17 +120,18 @@ panic(const char *fmt, ...)
va_end(ap);
printf("\n");
#ifdef KGDB
#if defined(KGDB) || defined(DDB)
if (debugger_on_panic) {
kgdb_panic();
#endif
#ifdef DDB
Debugger ("panic");
#endif
}
boot(bootopt);
#endif
}
/*
* Warn that a system table is full.
*/