fanotify.c: fix typo in header inclusion
authorrofl0r <retnyg@gmx.net>
Fri, 3 Jan 2014 10:27:46 +0000 (11:27 +0100)
committerrofl0r <retnyg@gmx.net>
Fri, 3 Jan 2014 10:29:57 +0000 (11:29 +0100)
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.

src/linux/fanotify.c

index 73f941d..1f4ef93 100644 (file)
@@ -1,5 +1,5 @@
 #include "syscall.h"
-#include <sys/inotify.h>
+#include <sys/fanotify.h>
 
 int fanotify_init(unsigned flags, unsigned event_f_flags)
 {