diff options
author | 2002-06-11 03:39:50 +0000 | |
---|---|---|
committer | 2002-06-11 03:39:50 +0000 | |
commit | aa3e3e02b4b6d2852b7773a9cb5d6dbb00a4b535 (patch) | |
tree | 575f214e46df73b690146dffa04e233421929dab | |
parent | Checkpoint my work. Register with bio, implement part of (diff) | |
download | wireguard-openbsd-aa3e3e02b4b6d2852b7773a9cb5d6dbb00a4b535.tar.xz wireguard-openbsd-aa3e3e02b4b6d2852b7773a9cb5d6dbb00a4b535.zip |
Correct com vs ucom cut-n-paste thinko.
-rw-r--r-- | sys/arch/macppc/macppc/conf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/macppc/macppc/conf.c b/sys/arch/macppc/macppc/conf.c index 2c0a52fad8c..11f4ac8a063 100644 --- a/sys/arch/macppc/macppc/conf.c +++ b/sys/arch/macppc/macppc/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.11 2002/06/07 07:13:31 miod Exp $ */ +/* $OpenBSD: conf.c,v 1.12 2002/06/11 03:39:50 miod Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -376,7 +376,7 @@ blktochr(dev) #include "vgafb_pci.h" cons_decl(ws); -cons_decl(com); +cons_decl(ucom); cons_decl(ofc); struct consdev constab[] = { @@ -386,8 +386,8 @@ struct consdev constab[] = { #if NOFCONS > 0 cons_init(ofc), #endif -#if NCOM > 0 - cons_init(com), +#if NUCOM > 0 + cons_init(ucom), #endif { 0 }, }; |