projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
66fcde4
)
fix missing argument to syscall in fanotify_mark
author
Clément Vasseur
<clement.vasseur@gmail.com>
Fri, 13 Jun 2014 16:27:56 +0000
(18:27 +0200)
committer
Rich Felker
<dalias@aerifal.cx>
Sat, 14 Jun 2014 04:10:16 +0000
(
00:10
-0400)
src/linux/fanotify.c
patch
|
blob
|
history
diff --git
a/src/linux/fanotify.c
b/src/linux/fanotify.c
index 1f4ef93bda61ff2d6d16b57df32ac6b49d413b41..c6211afc0002dbf1a288b6375d662cece5e35c5c 100644
(file)
--- 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, f
lags, __SYSCALL_LL_O
(mask), dfd, pathname);
+ return syscall(SYS_fanotify_mark, f
anotify_fd, flags, __SYSCALL_LL_E
(mask), dfd, pathname);
}