diff options
Diffstat (limited to 'libnetfs/fsysstubs.c')
-rw-r--r-- | libnetfs/fsysstubs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libnetfs/fsysstubs.c b/libnetfs/fsysstubs.c index 91e05cf0..4fbd4756 100644 --- a/libnetfs/fsysstubs.c +++ b/libnetfs/fsysstubs.c @@ -26,9 +26,9 @@ error_t __attribute__((weak)) netfs_S_fsys_getfile (struct netfs_control *cntl, 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 handlelen, + 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 handlelen, mach_port_t *file, mach_msg_type_name_t *filetype) { return EOPNOTSUPP; @@ -59,7 +59,7 @@ netfs_S_fsys_forward (mach_port_t cntl, mach_port_t reply, mach_msg_type_name_t reply_type, mach_port_t request, - data_t argv, mach_msg_type_number_t argvlen) + const_data_t argv, mach_msg_type_number_t argvlen) { return EOPNOTSUPP; } |