diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-06 02:58:59 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-06 02:58:59 +0200 |
commit | 5370bfb123266ab5716f321e43d3f8f6da7d7143 (patch) | |
tree | fb4a1500d571aee4c36dc2aa5510304d5724cf07 /miscutils | |
parent | 90a9904e9ef5f2fb70e1952cb1a68bd9213bcde3 (diff) | |
download | busybox-w32-5370bfb123266ab5716f321e43d3f8f6da7d7143.tar.gz busybox-w32-5370bfb123266ab5716f321e43d3f8f6da7d7143.tar.bz2 busybox-w32-5370bfb123266ab5716f321e43d3f8f6da7d7143.zip |
documentation and typo fixes. By Dan Fandrich (dan AT coneharvesters.com)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/inotifyd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/inotifyd.c b/miscutils/inotifyd.c index d6b5d246b..999b5e309 100644 --- a/miscutils/inotifyd.c +++ b/miscutils/inotifyd.c | |||
@@ -34,8 +34,8 @@ static const char mask_names[] ALIGN1 = | |||
34 | "a" // 0x00000001 File was accessed | 34 | "a" // 0x00000001 File was accessed |
35 | "c" // 0x00000002 File was modified | 35 | "c" // 0x00000002 File was modified |
36 | "e" // 0x00000004 Metadata changed | 36 | "e" // 0x00000004 Metadata changed |
37 | "w" // 0x00000008 Writtable file was closed | 37 | "w" // 0x00000008 Writable file was closed |
38 | "0" // 0x00000010 Unwrittable file closed | 38 | "0" // 0x00000010 Unwritable file closed |
39 | "r" // 0x00000020 File was opened | 39 | "r" // 0x00000020 File was opened |
40 | "m" // 0x00000040 File was moved from X | 40 | "m" // 0x00000040 File was moved from X |
41 | "y" // 0x00000080 File was moved to Y | 41 | "y" // 0x00000080 File was moved to Y |