瀏覽代碼

fix typo in inotify structure

Rich Felker 14 年之前
父節點
當前提交
b1b752372f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/sys/inotify.h

+ 1 - 1
include/sys/inotify.h

@@ -8,7 +8,7 @@ extern "C" {
 #include <stdint.h>
 
 struct inotify_event {
-	int we;
+	int wd;
 	uint32_t mask, cookie, len;
 	char name[];
 };