summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2012-07-13 12:37:08 +0000
committerderaadt <deraadt@openbsd.org>2012-07-13 12:37:08 +0000
commit2fc0ba7fe40a729c332a174498e7347c0f7020bb (patch)
tree690eb654da6c47e4675709737d2ef02274da2119
parentAdd support compose LED on a usb keyboard (diff)
downloadwireguard-openbsd-2fc0ba7fe40a729c332a174498e7347c0f7020bb.tar.xz
wireguard-openbsd-2fc0ba7fe40a729c332a174498e7347c0f7020bb.zip
Try to avoid using the same wchan name twice.
-rw-r--r--sys/dev/wscons/wsdisplay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/wscons/wsdisplay.c b/sys/dev/wscons/wsdisplay.c
index 5bf2f31ea37..ea45c1e3cd3 100644
--- a/sys/dev/wscons/wsdisplay.c
+++ b/sys/dev/wscons/wsdisplay.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wsdisplay.c,v 1.105 2011/07/03 18:11:21 nicm Exp $ */
+/* $OpenBSD: wsdisplay.c,v 1.106 2012/07/13 12:37:08 deraadt Exp $ */
/* $NetBSD: wsdisplay.c,v 1.82 2005/02/27 00:27:52 perry Exp $ */
/*
@@ -2040,7 +2040,7 @@ wsscreen_switchwait(struct wsdisplay_softc *sc, int no)
s = spltty();
if (scr != sc->sc_focus) {
scr->scr_flags |= SCR_WAITACTIVE;
- res = tsleep(scr, PCATCH, "wswait", 0);
+ res = tsleep(scr, PCATCH, "wswait2", 0);
if (scr != sc->sc_scr[no])
res = ENXIO; /* disappeared in the meantime */
else