diff options
-rw-r--r-- | libtrivfs/file-chflags.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libtrivfs/file-chflags.c b/libtrivfs/file-chflags.c index 06a3e330..efe47ffb 100644 --- a/libtrivfs/file-chflags.c +++ b/libtrivfs/file-chflags.c @@ -19,7 +19,10 @@ #include "fs_S.h" kern_return_t -trivfs_S_file_chflags (struct trivfs_protid *cred, int flags) +trivfs_S_file_chflags (struct trivfs_protid *cred, + mach_port_t reply, + mach_msg_type_name_t replytype, + int flags) { return cred ? file_chflags (cred->realnode, flags) : EOPNOTSUPP; } |