summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrofl0r <retnyg@gmx.net>2014-01-03 11:27:46 +0100
committerrofl0r <retnyg@gmx.net>2014-01-03 11:29:57 +0100
commit9e91398b282f3ca3541da71c51adb9958f3e9cc2 (patch)
tree84a4d757d826b57f7ae758862ea4e73f213c2e46
parent863d628d93ea341b6a32661a1654320ce69f6a07 (diff)
downloadmusl-9e91398b282f3ca3541da71c51adb9958f3e9cc2.tar.gz
fanotify.c: fix typo in header inclusion
the header is included only as a guard to check that the declaration and definition match, so the typo didn't cause any breakage aside from omitting this check.
-rw-r--r--src/linux/fanotify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linux/fanotify.c b/src/linux/fanotify.c
index 73f941de..1f4ef93b 100644
--- a/src/linux/fanotify.c
+++ b/src/linux/fanotify.c
@@ -1,5 +1,5 @@
#include "syscall.h"
-#include <sys/inotify.h>
+#include <sys/fanotify.h>
int fanotify_init(unsigned flags, unsigned event_f_flags)
{