瀏覽代碼

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.
rofl0r 11 年之前
父節點
當前提交
9e91398b28
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/linux/fanotify.c

+ 1 - 1
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)
 {