diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-03 19:06:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-03 19:06:31 +0000 |
commit | 13741186943189817d5028e255b27df409c25741 (patch) | |
tree | d4e2f4cb2776a73477b29e5d7eda4efcea1dcd29 /sys/kern/tty.c | |
parent | 4549810c8673efeb8cc6a6458ad9eb23b78f57ef (diff) |
bad types; wileyc@sekiya.twics.co.jp
Diffstat (limited to 'sys/kern/tty.c')
-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 9364d3a23ae..a4242bcc78b 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.33 1997/11/13 09:10:57 deraadt Exp $ */ +/* $OpenBSD: tty.c,v 1.34 1998/02/03 19:06:26 deraadt Exp $ */ /* $NetBSD: tty.c,v 1.68.4.2 1996/06/06 16:04:52 thorpej Exp $ */ /*- @@ -1307,7 +1307,7 @@ ttypend(tp) register struct tty *tp; { struct clist tq; - register c; + register int c; CLR(tp->t_lflag, PENDIN); SET(tp->t_state, TS_TYPEN); |