iscript: s/COLS/COLUMNS/ in start message

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2018-05-14 13:59:52 +02:00
parent aa4e132f57
commit 8a69ad47b8
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ static void typescript_message_start(const struct script_control *ctl, time_t *t
if (tty)
fprintf(ctl->typescriptfp, "TTY=\"%s\" ", tty);
fprintf(ctl->typescriptfp, "COLS=\"%d\" LINES=\"%d\"", cols, lines);
fprintf(ctl->typescriptfp, "COLUMNS=\"%d\" LINES=\"%d\"", cols, lines);
} else
fprintf(ctl->typescriptfp, _("<not executed on terminal>"));