diff options
author | jlemon <jlemon@FreeBSD.org> | 2001-02-17 19:40:22 +0000 |
---|---|---|
committer | jlemon <jlemon@FreeBSD.org> | 2001-02-17 19:40:22 +0000 |
commit | 2136f987f0016bfd9e8b6cf7d850f0091a1b80df (patch) | |
tree | 5275cbc9b32d27d97a535f4f832dbfce731519ef /sys | |
parent | e5bed7640fcd8227b8754262ebee76c7b07192f2 (diff) | |
download | FreeBSD-src-2136f987f0016bfd9e8b6cf7d850f0091a1b80df.zip FreeBSD-src-2136f987f0016bfd9e8b6cf7d850f0091a1b80df.tar.gz |
Fix tab breakage from last commit.
Spotted by: bde
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/tty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index b5b8a9c..1bc30ca 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -2205,7 +2205,7 @@ ttwakeup(tp) if (ISSET(tp->t_state, TS_ASYNC) && tp->t_sigio != NULL) pgsigio(tp->t_sigio, SIGIO, (tp->t_session != NULL)); wakeup(TSA_HUP_OR_INPUT(tp)); - KNOTE(&tp->t_rsel.si_note, 0); + KNOTE(&tp->t_rsel.si_note, 0); } /* @@ -2230,7 +2230,7 @@ ttwwakeup(tp) CLR(tp->t_state, TS_SO_OLOWAT); wakeup(TSA_OLOWAT(tp)); } - KNOTE(&tp->t_wsel.si_note, 0); + KNOTE(&tp->t_wsel.si_note, 0); } /* |