aboutsummaryrefslogtreecommitdiff
path: root/fatfs
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 /fatfs
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 'fatfs')
-rw-r--r--fatfs/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fatfs/main.c b/fatfs/main.c
index b3836f6f..ed8cf910 100644
--- a/fatfs/main.c
+++ b/fatfs/main.c
@@ -273,9 +273,9 @@ diskfs_readonly_changed (int readonly)
error_t
diskfs_S_fsys_getfile (struct diskfs_control *pt,
mach_port_t reply, mach_msg_type_name_t reply_type,
- uid_t *uids, mach_msg_type_number_t nuids,
- gid_t *gids, mach_msg_type_number_t ngids,
- data_t handle, mach_msg_type_number_t handle_len,
+ const uid_t *uids, mach_msg_type_number_t nuids,
+ const gid_t *gids, mach_msg_type_number_t ngids,
+ const_data_t handle, mach_msg_type_number_t handle_len,
mach_port_t *file, mach_msg_type_name_t *file_type)
{
return EOPNOTSUPP;