From 8332a09c969e43066de7d57f5118220671658efd Mon Sep 17 00:00:00 2001 From: Rachid Koucha <47061324+Rachid-Koucha@users.noreply.github.com> Date: Thu, 11 Jul 2019 09:42:05 +0200 Subject: [PATCH] Typo fix Fixed a typo in error message Signed-off-by: Rachid Koucha --- src/lxc/terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/terminal.c b/src/lxc/terminal.c index 4ea0c5dc3..578de68aa 100644 --- a/src/lxc/terminal.c +++ b/src/lxc/terminal.c @@ -451,7 +451,7 @@ int lxc_setup_tios(int fd, struct termios *oldtios) struct termios newtios; if (!isatty(fd)) { - ERROR("File descriptor %d does not refert to a terminal", fd); + ERROR("File descriptor %d does not refer to a terminal", fd); return -1; } -- 2.47.2