diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-01 13:53:31 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-01 18:05:00 +0100 |
commit | a8d51bf0ce26fd26e00338540857f43b8a99e126 (patch) | |
tree | 917f249fbf6873280161959c74a71b8edb0f4cea /console | |
parent | e2b75a67395fbbdd36bb0bceaea2465a2a1fa172 (diff) | |
download | hurd-a8d51bf0ce26fd26e00338540857f43b8a99e126.tar.gz hurd-a8d51bf0ce26fd26e00338540857f43b8a99e126.tar.bz2 hurd-a8d51bf0ce26fd26e00338540857f43b8a99e126.zip |
Fix build warnings
No actual behavior change.
Diffstat (limited to 'console')
-rw-r--r-- | console/console.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/console/console.c b/console/console.c index 7306b6b8..ab684198 100644 --- a/console/console.c +++ b/console/console.c @@ -1853,29 +1853,29 @@ S_tioctl_tiocnxcl (struct protid *cred) } kern_return_t -S_tioctl_tiocgeta (struct protid *cred, tcflag_t *modes, cc_t *ccs, - speed_t *speeds) +S_tioctl_tiocgeta (struct protid *cred, modes_t modes, ccs_t ccs, + speeds_t speeds) { return EOPNOTSUPP; } kern_return_t -S_tioctl_tiocseta (struct protid *cred, tcflag_t *modes, cc_t *ccs, - speed_t *speeds) +S_tioctl_tiocseta (struct protid *cred, modes_t modes, ccs_t ccs, + speeds_t speeds) { return EOPNOTSUPP; } kern_return_t -S_tioctl_tiocsetaw (struct protid *cred, tcflag_t *modes, cc_t *ccs, - speed_t *speeds) +S_tioctl_tiocsetaw (struct protid *cred, modes_t modes, ccs_t ccs, + speeds_t speeds) { return EOPNOTSUPP; } kern_return_t -S_tioctl_tiocsetaf (struct protid *cred, tcflag_t *modes, cc_t *ccs, - speed_t *speeds) +S_tioctl_tiocsetaf (struct protid *cred, modes_t modes, ccs_t ccs, + speeds_t speeds) { return EOPNOTSUPP; } |