aboutsummaryrefslogtreecommitdiff
path: root/console
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2022-01-16 18:54:19 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-01-16 19:29:10 +0100
commitdd3048b2e483f66571cfa1b2ccebb2091b9ad990 (patch)
treee8cc587d06c15befd9ab7212938bb0e05a029c23 /console
parent2e38095efd8cad7fe6feb95dbeb276b7a4287f05 (diff)
downloadhurd-dd3048b2e483f66571cfa1b2ccebb2091b9ad990.tar.gz
hurd-dd3048b2e483f66571cfa1b2ccebb2091b9ad990.tar.bz2
hurd-dd3048b2e483f66571cfa1b2ccebb2091b9ad990.zip
Make RPC input array parameters const
This follows mig's cf4bcc3f1435 ("Also add const qualifiers on server side")
Diffstat (limited to 'console')
-rw-r--r--console/console.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/console/console.c b/console/console.c
index ab684198..ad31fba2 100644
--- a/console/console.c
+++ b/console/console.c
@@ -1860,22 +1860,22 @@ S_tioctl_tiocgeta (struct protid *cred, modes_t modes, ccs_t ccs,
}
kern_return_t
-S_tioctl_tiocseta (struct protid *cred, modes_t modes, ccs_t ccs,
- speeds_t speeds)
+S_tioctl_tiocseta (struct protid *cred, const modes_t modes, const ccs_t ccs,
+ const speeds_t speeds)
{
return EOPNOTSUPP;
}
kern_return_t
-S_tioctl_tiocsetaw (struct protid *cred, modes_t modes, ccs_t ccs,
- speeds_t speeds)
+S_tioctl_tiocsetaw (struct protid *cred, const modes_t modes, const ccs_t ccs,
+ const speeds_t speeds)
{
return EOPNOTSUPP;
}
kern_return_t
-S_tioctl_tiocsetaf (struct protid *cred, modes_t modes, ccs_t ccs,
- speeds_t speeds)
+S_tioctl_tiocsetaf (struct protid *cred, const modes_t modes, const ccs_t ccs,
+ const speeds_t speeds)
{
return EOPNOTSUPP;
}