diff options
author | 2019-02-25 11:29:30 +0000 | |
---|---|---|
committer | 2019-02-25 11:29:30 +0000 | |
commit | e4c489db5988dfca42b19cd340f06c7c81959e7c (patch) | |
tree | d108b1de2102e8935fa277a82093b3c01ad591c6 | |
parent | Fix memory barrier in __mtx_leave(). membar_exit_before_atomic() cannot (diff) | |
download | wireguard-openbsd-e4c489db5988dfca42b19cd340f06c7c81959e7c.tar.xz wireguard-openbsd-e4c489db5988dfca42b19cd340f06c7c81959e7c.zip |
Typo in comment
spotted by miod
-rw-r--r-- | sys/arch/luna88k/dev/siotty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/luna88k/dev/siotty.c b/sys/arch/luna88k/dev/siotty.c index d0d519af816..633127704ee 100644 --- a/sys/arch/luna88k/dev/siotty.c +++ b/sys/arch/luna88k/dev/siotty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: siotty.c,v 1.22 2018/02/19 08:59:52 mpi Exp $ */ +/* $OpenBSD: siotty.c,v 1.23 2019/02/25 11:29:30 jca Exp $ */ /* $NetBSD: siotty.c,v 1.9 2002/03/17 19:40:43 atatat Exp $ */ /*- @@ -565,7 +565,7 @@ sioioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p) if (error >= 0) return error; - /* the last resort for TIOC ioctl tranversing */ + /* the last resort for TIOC ioctl traversing */ switch (cmd) { case TIOCSBRK: /* Set the hardware into BREAK condition */ siomctl(sc, TIOCM_BREAK, DMBIS); |