From ee318490c991818284f13107532ac7ee0c558e7c Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 28 Feb 2025 08:28:29 -0500 Subject: kernel: termios: c_cc is of type cc_t Signed-off-by: Ian Moffett --- sys/include/sys/termios.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/include') diff --git a/sys/include/sys/termios.h b/sys/include/sys/termios.h index b2d3c8a..a95ea2f 100644 --- a/sys/include/sys/termios.h +++ b/sys/include/sys/termios.h @@ -48,7 +48,7 @@ struct termios { tcflag_t c_oflag; /* Output flags */ tcflag_t c_cflag; /* Control flags */ tcflag_t c_lflag; /* Local flags */ - c_cc[NCCS]; + cc_t c_cc[NCCS]; }; #endif /* _TERMIOS_H_ */ -- cgit v1.2.3