summaryrefslogtreecommitdiffstats
path: root/sys/kern/tty.c
diff options
context:
space:
mode:
authorkevlo <kevlo@FreeBSD.org>2012-11-07 07:00:59 +0000
committerkevlo <kevlo@FreeBSD.org>2012-11-07 07:00:59 +0000
commit25611f9cf9abb970322ecc6e9eb957d8f47b4819 (patch)
treec39378afd60870cb7ef18ef2aa77c0b3103068c9 /sys/kern/tty.c
parent024301417f2256051da79d80e8b2d58b25d38cec (diff)
downloadFreeBSD-src-25611f9cf9abb970322ecc6e9eb957d8f47b4819.zip
FreeBSD-src-25611f9cf9abb970322ecc6e9eb957d8f47b4819.tar.gz
Fix typo; s/ouput/output
Diffstat (limited to 'sys/kern/tty.c')
-rw-r--r--sys/kern/tty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c
index e6d0d80..5c7b753 100644
--- a/sys/kern/tty.c
+++ b/sys/kern/tty.c
@@ -114,7 +114,7 @@ tty_watermarks(struct tty *tp)
/* Set low watermark at 10% (when 90% is available). */
tp->t_inlow = (ttyinq_getallocatedsize(&tp->t_inq) * 9) / 10;
- /* Provide an ouput buffer for 0.2 seconds of data. */
+ /* Provide an output buffer for 0.2 seconds of data. */
bs = MIN(tp->t_termios.c_ospeed / 5, TTYBUF_MAX);
ttyoutq_setsize(&tp->t_outq, tp, bs);
OpenPOWER on IntegriCloud