diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-03-02 11:08:39 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-03-02 11:08:39 +0000 |
commit | 0fa1e71cf2102e79b75922b1add4bb669b598f81 (patch) | |
tree | 163d3d6501af133512ea90b7553e4320a9f22fd9 /sys/arch | |
parent | 6c99b330acd6bfcbe8a330f307c9289d048188fd (diff) |
Properly conditionalize adding wscons to the list of consoles on
NWSDISPLAY.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/amd64/conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/conf.c b/sys/arch/amd64/amd64/conf.c index 98502cadb7b..d0589694f72 100644 --- a/sys/arch/amd64/amd64/conf.c +++ b/sys/arch/amd64/amd64/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.38 2012/08/23 06:12:49 deraadt Exp $ */ +/* $OpenBSD: conf.c,v 1.39 2013/03/02 11:08:38 kettenis Exp $ */ /* * Copyright (c) 1994, 1995 Charles M. Hannum. All rights reserved. @@ -429,7 +429,7 @@ cons_decl(com); cons_decl(ws); struct consdev constab[] = { -#if 1 || NWSDISPLAY > 0 +#if NWSDISPLAY > 0 cons_init(ws), #endif #if NCOM > 0 |