Skip to content

Commit 9fe0c03

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/linux/fsnotify_backend.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
#define FS_ACCESS 0x00000001 /* File was accessed */
3232
#define FS_MODIFY 0x00000002 /* File was modified */
3333
#define FS_ATTRIB 0x00000004 /* Metadata changed */
34-
#define FS_CLOSE_WRITE 0x00000008 /* Writtable file was closed */
35-
#define FS_CLOSE_NOWRITE 0x00000010 /* Unwrittable file closed */
34+
#define FS_CLOSE_WRITE 0x00000008 /* Writable file was closed */
35+
#define FS_CLOSE_NOWRITE 0x00000010 /* Unwritable file closed */
3636
#define FS_OPEN 0x00000020 /* File was opened */
3737
#define FS_MOVED_FROM 0x00000040 /* File was moved from X */
3838
#define FS_MOVED_TO 0x00000080 /* File was moved to Y */

0 commit comments

Comments
 (0)