summaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-02-28 08:28:29 -0500
committerIan Moffett <ian@osmora.org>2025-02-28 08:28:29 -0500
commitee318490c991818284f13107532ac7ee0c558e7c (patch)
treec35e2e05e784a3f49170ae13486d11b49e59df5a /sys/include
parent0d61394d5342f1063713872308511a98487de13f (diff)
kernel: termios: c_cc is of type cc_t
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/sys/termios.h2
1 files changed, 1 insertions, 1 deletions
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_ */