|
Message-Id: <1402676876-37763-1-git-send-email-clement.vasseur@gmail.com> Date: Fri, 13 Jun 2014 18:27:56 +0200 From: Clément Vasseur <clement.vasseur@...il.com> To: musl@...ts.openwall.com Subject: [PATCH] fix fanotify_mark --- src/linux/fanotify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linux/fanotify.c b/src/linux/fanotify.c index 1f4ef93..c6211af 100644 --- a/src/linux/fanotify.c +++ b/src/linux/fanotify.c @@ -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); } -- 1.9.2
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.