Skip to content

Commit e225555

Browse files
endriftjankara
authored andcommitted
inotify: Fix misspelling of "writable"
Several file system notification system headers have "writable" misspelled as "writtable" in the comments. This patch fixes it in the inotify header. Signed-off-by: Vicki Pfau <vi@endrift.com> Signed-off-by: Jan Kara <jack@suse.cz> Message-Id: <20240306020831.1404033-1-vi@endrift.com>
1 parent b7dbaac commit e225555

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/uapi/linux/inotify.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ struct inotify_event {
3030
#define IN_ACCESS 0x00000001 /* File was accessed */
3131
#define IN_MODIFY 0x00000002 /* File was modified */
3232
#define IN_ATTRIB 0x00000004 /* Metadata changed */
33-
#define IN_CLOSE_WRITE 0x00000008 /* Writtable file was closed */
34-
#define IN_CLOSE_NOWRITE 0x00000010 /* Unwrittable file closed */
33+
#define IN_CLOSE_WRITE 0x00000008 /* Writable file was closed */
34+
#define IN_CLOSE_NOWRITE 0x00000010 /* Unwritable file closed */
3535
#define IN_OPEN 0x00000020 /* File was opened */
3636
#define IN_MOVED_FROM 0x00000040 /* File was moved from X */
3737
#define IN_MOVED_TO 0x00000080 /* File was moved to Y */

0 commit comments

Comments
 (0)