From 166d36d7d47f57f94d741128d43d5d248f3b04a8 Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Wed, 23 Feb 2022 15:35:46 +0100 Subject: [PATCH] Correct text --- src/tty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tty.c b/src/tty.c index 5cec626..0767d0c 100644 --- a/src/tty.c +++ b/src/tty.c @@ -142,7 +142,7 @@ void handle_command_sequence(char input_char, char previous_char, char *output_c error_printf("Could not get line state: %s", strerror(errno)); break; } - tio_printf("Lines state:"); + tio_printf("Line states:"); tio_printf(" DTR: %s", (state & TIOCM_DTR) ? "HIGH" : "LOW"); tio_printf(" RTS: %s", (state & TIOCM_RTS) ? "HIGH" : "LOW"); tio_printf(" CTS: %s", (state & TIOCM_CTS) ? "HIGH" : "LOW");