diff options
author | 2001-01-30 04:54:50 +0000 | |
---|---|---|
committer | 2001-01-30 04:54:50 +0000 | |
commit | 74a243f51dd841f95474382183934a7c61ec5e45 (patch) | |
tree | 0cf436ff31277bee52b9e36fa51de94a4d0c7c9a | |
parent | borrow an idea from if_rl... take advantage of HME_RX_OFFSET and use (diff) | |
download | wireguard-openbsd-74a243f51dd841f95474382183934a7c61ec5e45.tar.xz wireguard-openbsd-74a243f51dd841f95474382183934a7c61ec5e45.zip |
WSMOUSEDEVCF_MUX_DEFAULT -> WSKBDDEVCF_MUX_DEFAULT, although this didn't
matter much since they are the same value, but confusing nonetheless.
-rw-r--r-- | sys/dev/wscons/wskbd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/wscons/wskbd.c b/sys/dev/wscons/wskbd.c index c9e11f700a3..bcc712dfd13 100644 --- a/sys/dev/wscons/wskbd.c +++ b/sys/dev/wscons/wskbd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wskbd.c,v 1.4 2000/11/24 14:05:25 aaron Exp $ */ +/* $OpenBSD: wskbd.c,v 1.5 2001/01/30 04:54:50 aaron Exp $ */ /* $NetBSD: wskbd.c,v 1.38 2000/03/23 07:01:47 thorpej Exp $ */ /* @@ -528,7 +528,7 @@ wskbd_detach(self, flags) } mux = sc->sc_dv.dv_cfdata->wskbddevcf_mux; - if (mux != WSMOUSEDEVCF_MUX_DEFAULT) + if (mux != WSKBDDEVCF_MUX_DEFAULT) wsmux_detach(mux, &sc->sc_dv); #endif |