diff options
author | anton <anton@cvs.openbsd.org> | 2019-02-19 07:03:30 +0000 |
---|---|---|
committer | anton <anton@cvs.openbsd.org> | 2019-02-19 07:03:30 +0000 |
commit | 90f9cde8de655923485e1d0c9b90ebd76c1d052e (patch) | |
tree | a360068a9a23266ca228cb7ce16d3317c686ff85 /sys/dev/wscons | |
parent | 6633029441519b6b257e9be72fcc52ec3c69d85a (diff) |
whitespace nits
Diffstat (limited to 'sys/dev/wscons')
-rw-r--r-- | sys/dev/wscons/wsmux.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/wscons/wsmux.c b/sys/dev/wscons/wsmux.c index 12d2519498a..e5a72f2dd26 100644 --- a/sys/dev/wscons/wsmux.c +++ b/sys/dev/wscons/wsmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wsmux.c,v 1.40 2019/02/19 07:01:02 anton Exp $ */ +/* $OpenBSD: wsmux.c,v 1.41 2019/02/19 07:03:29 anton Exp $ */ /* $NetBSD: wsmux.c,v 1.37 2005/04/30 03:47:12 augustss Exp $ */ /* @@ -38,7 +38,7 @@ /* * wscons mux device. * - * The mux device is a collection of real mice and keyboards and acts as + * The mux device is a collection of real mice and keyboards and acts as * a merge point for all the events from the different real devices. */ @@ -179,7 +179,7 @@ wsmuxopen(dev_t dev, int flags, int mode, struct proc *p) return (ENXIO); DPRINTF(("wsmuxopen: %s: sc=%p p=%p\n", sc->sc_base.me_dv.dv_xname, sc, p)); - + if ((flags & (FREAD | FWRITE)) == FWRITE) { /* Not opening for read, only ioctl is available. */ return (0); @@ -827,7 +827,7 @@ wsmux_set_display(struct wsmux_softc *sc, struct device *displaydv) } ok = 0; error = 0; - TAILQ_FOREACH(me, &sc->sc_cld,me_next) { + TAILQ_FOREACH(me, &sc->sc_cld, me_next) { #ifdef DIAGNOSTIC if (me->me_parent != sc) { printf("wsmux_set_display: bad child parent %p\n", me); |