diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-02-07 22:48:58 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-02-07 22:48:58 -0500 |
commit | 570edb19d12dd3920b576db06b657b639fdbac00 (patch) | |
tree | acc06961adb30d35eede7a0f1f7a6461ea94118e /include | |
parent | f2baf4d7b8be043b231ecf7fc611247196acd9f5 (diff) | |
download | musl-570edb19d12dd3920b576db06b657b639fdbac00.tar.gz musl-570edb19d12dd3920b576db06b657b639fdbac00.tar.xz musl-570edb19d12dd3920b576db06b657b639fdbac00.zip |
fix typo in inotify.h
Diffstat (limited to 'include')
-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 921a19ca..78acdfd0 100644 --- a/include/sys/inotify.h +++ b/include/sys/inotify.h @@ -13,7 +13,7 @@ struct inotify_event { char name[]; }; -#define IN_CLOEXEC 020000000 +#define IN_CLOEXEC 02000000 #define IN_NONBLOCK 04000 #define IN_ACCESS 0x00000001 |