diff options
author | Ian Moffett <ian@osmora.org> | 2025-02-28 08:28:29 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-02-28 08:28:29 -0500 |
commit | ee318490c991818284f13107532ac7ee0c558e7c (patch) | |
tree | c35e2e05e784a3f49170ae13486d11b49e59df5a /sys | |
parent | 0d61394d5342f1063713872308511a98487de13f (diff) |
kernel: termios: c_cc is of type cc_t
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/include/sys/termios.h | 2 |
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_ */ |