mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 15:48:48 -04:00
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.
This commit is contained in:
parent
78fd7b3d49
commit
cd9307f60d
1 changed files with 1 additions and 1 deletions
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue