fix missing argument to syscall in fanotify_mark

This commit is contained in:
Clément Vasseur 2014-06-13 18:27:56 +02:00 committed by Rich Felker
parent 66fcde4ae4
commit 4e5c7a2176
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}