From cd9307f60d5b2cf361e2dfbdd4014ac2e1d0c910 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Tue, 18 Feb 1997 09:26:15 +0000 Subject: [PATCH] Changed type of t_line from u_char to int. The Lite2 merge blew away rev.1.6 which changed it from char to int. --- sys/sys/tty.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/tty.h b/sys/sys/tty.h index e44526d08ac..c99d8e9b609 100644 --- a/sys/sys/tty.h +++ b/sys/sys/tty.h @@ -72,7 +72,7 @@ struct tty { long t_cancc; /* Canonical queue statistics. */ struct clist t_outq; /* Device output queue. */ long t_outcc; /* Output queue statistics. */ - u_char t_line; /* Interface to device drivers. */ + int t_line; /* Interface to device drivers. */ dev_t t_dev; /* Device. */ int t_state; /* Device and driver (TS*) state. */ int t_flags; /* Tty flags. */