From 7fb82bad763cd6c9e94e46b944b1b8c2eb5adc6d Mon Sep 17 00:00:00 2001 From: bde Date: Tue, 28 May 2002 15:24:13 +0000 Subject: Fixed some style bugs in recent commits. --- sys/sys/tty.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sys/sys/tty.h b/sys/sys/tty.h index 80ed1bd..0d900a6 100644 --- a/sys/sys/tty.h +++ b/sys/sys/tty.h @@ -119,7 +119,7 @@ struct tty { #define t_cc t_termios.c_cc #define t_cflag t_termios.c_cflag -#define t_dev ttyu.t_kdev +#define t_dev ttyu.t_kdev #define t_iflag t_termios.c_iflag #define t_ispeed t_termios.c_ispeed #define t_lflag t_termios.c_lflag @@ -132,10 +132,10 @@ struct tty { #define TTOPRI (PSOCK + 2) /* Sleep priority for tty writes. */ /* - * Userland version of struct tty, for sysctl + * Userland version of struct tty, for sysctl. */ struct xtty { - size_t xt_size; /* Structure size */ + size_t xt_size; /* Structure size. */ long xt_rawcc; /* Raw input queue statistics. */ long xt_cancc; /* Canonical queue statistics. */ long xt_outcc; /* Output queue statistics. */ @@ -143,9 +143,9 @@ struct xtty { udev_t xt_dev; /* Userland (sysctl) instance. */ int xt_state; /* Device and driver (TS*) state. */ int xt_flags; /* Tty flags. */ - int xt_timeout; /* Timeout for ttywait() */ - pid_t xt_pgid; /* Process group ID */ - pid_t xt_sid; /* Session ID */ + int xt_timeout; /* Timeout for ttywait(). */ + pid_t xt_pgid; /* Process group ID. */ + pid_t xt_sid; /* Session ID. */ struct termios xt_termios; /* Termios state. */ struct winsize xt_winsize; /* Window size. */ int xt_column; /* Tty output column. */ -- cgit v1.1