summaryrefslogtreecommitdiff
path: root/socketio.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2024-11-16 23:14:23 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-11-16 23:14:23 +0100
commit38a474275bca3242226cca72a47225c803014c41 (patch)
tree34e615b4e6df30c8ad5d5526bd75b3cd44aae1a3 /socketio.c
parentc78969e1b28a79fc37c2ad6886923f68ad15d96a (diff)
Fix 64b buildssocketio
Diffstat (limited to 'socketio.c')
-rw-r--r--socketio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/socketio.c b/socketio.c
index 4069d28f4..6c2ec33a1 100644
--- a/socketio.c
+++ b/socketio.c
@@ -847,7 +847,7 @@ netfs_attempt_mkdev (struct iouser *cred, struct node *np,
length ARGZLEN) for user CRED. NP is locked. */
error_t
netfs_set_translator (struct iouser *cred, struct node *np,
- const char *argz, size_t argzlen)
+ const char *argz, mach_msg_type_number_t argzlen)
{
return EOPNOTSUPP;
}
@@ -858,7 +858,7 @@ netfs_set_translator (struct iouser *cred, struct node *np,
storage, and return it in *ARGZ; set *ARGZ_LEN to the total length. */
error_t
netfs_get_translator (struct node *node, char **argz,
- size_t *argz_len)
+ mach_msg_type_number_t *argz_len)
{
return EOPNOTSUPP;
}