diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-12-28 20:41:57 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-12-28 20:41:57 +0000 |
commit | b15e68425deea74fa455dc387a1a8bfd275f3613 (patch) | |
tree | b76d6027a08c08148825dd1555fdee058e246d1f /sys | |
parent | de9026ac895c23e2a96167dfa15f7fc6659b4714 (diff) |
There is no need, and no point, to initialize panicstr here.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/vax/vax/machdep.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/vax/vax/machdep.c b/sys/arch/vax/vax/machdep.c index 7b8fa575f70..45202e4ea40 100644 --- a/sys/arch/vax/vax/machdep.c +++ b/sys/arch/vax/vax/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.92 2007/06/06 17:15:13 deraadt Exp $ */ +/* $OpenBSD: machdep.c,v 1.93 2007/12/28 20:41:56 miod Exp $ */ /* $NetBSD: machdep.c,v 1.108 2000/09/13 15:00:23 thorpej Exp $ */ /* @@ -192,7 +192,6 @@ cpu_startup() printf("real mem = %u (%uMB)\n", avail_end, avail_end/1024/1024); physmem = btoc(avail_end); - panicstr = NULL; mtpr(AST_NO, PR_ASTLVL); spl0(); |