diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-02-20 16:21:39 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-02-20 16:21:39 -0500 |
commit | b1b752372f10c904d398f64266b3188703727736 (patch) | |
tree | 07ffaaede18090ef1ec3fa2871641dc6e7ea2e94 /include/sys | |
parent | 26031da0f83a2a3ed52190077931ee6c18dfd689 (diff) | |
download | musl-b1b752372f10c904d398f64266b3188703727736.tar.gz musl-b1b752372f10c904d398f64266b3188703727736.tar.xz musl-b1b752372f10c904d398f64266b3188703727736.zip |
fix typo in inotify structure
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/inotify.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sys/inotify.h b/include/sys/inotify.h index 59644ef3..921a19ca 100644 --- a/include/sys/inotify.h +++ b/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[]; }; |