소스 검색

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[];
 };