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.
This commit is contained in:
rofl0r
2014-01-03 11:29:57 +01:00
parent 863d628d93
commit 9e91398b28
+1 -1
View 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)
{