term-utils/script: fix typo leading to syntax error

Introduced in edc7e42, this typo is actually invalid C. Fix this.

Signed-off-by: Bert van Hall <bert.vanhall@avionic-design.de>
This commit is contained in:
Bert van Hall 2017-01-18 16:41:36 +01:00
parent feda4342df
commit 8d6fdd2f0c
No known key found for this signature in database
GPG Key ID: F0E5DB1B35ED7C63
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ struct script_control {
struct termios attrs; /* slave terminal runtime attributes */
struct winsize win; /* terminal window size */
#if !HAVE_LIBUTIL || !HAVE_PTY_H
char line *; /* terminal line */
char *line; /* terminal line */
#endif
unsigned int
append:1, /* append output */