1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

hurd: Make RPC input array parameters const

This follows mig's cf4bcc3f1435 ("Also add const qualifiers on server
side")
This commit is contained in:
Samuel Thibault
2022-01-16 18:28:40 +00:00
parent 41a11a5e83
commit 0eb230ccce
3 changed files with 10 additions and 10 deletions

View File

@@ -165,8 +165,8 @@ _S_msg_add_auth (mach_port_t me,
kern_return_t
_S_msg_del_auth (mach_port_t me,
task_t task,
intarray_t uids, mach_msg_type_number_t nuids,
intarray_t gids, mach_msg_type_number_t ngids)
const_intarray_t uids, mach_msg_type_number_t nuids,
const_intarray_t gids, mach_msg_type_number_t ngids)
{
error_t err;
auth_t newauth;