Преглед изворни кода

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