提交 4e5c7a21 编写于 作者: C Clément Vasseur 提交者: Rich Felker

fix missing argument to syscall in fanotify_mark

上级 66fcde4a
......@@ -9,6 +9,6 @@ int fanotify_init(unsigned flags, unsigned event_f_flags)
int fanotify_mark(int fanotify_fd, unsigned flags, unsigned long long mask,
int dfd, const char *pathname)
{
return syscall(SYS_fanotify_mark, flags, __SYSCALL_LL_O(mask), dfd, pathname);
return syscall(SYS_fanotify_mark, fanotify_fd, flags, __SYSCALL_LL_E(mask), dfd, pathname);
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册