Skip to content

Commit 71a1ee6

Browse files
authored
Merge pull request #3622 from severen/fix-fanotify-constant
Correct the value of FAN_MARK_IGNORE
2 parents 6607133 + 4128640 commit 71a1ee6

File tree

1 file changed

+1
-1
lines changed
  • src/unix/linux_like/linux

1 file changed

+1
-1
lines changed

src/unix/linux_like/linux/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4074,7 +4074,7 @@ pub const FAN_MARK_IGNORED_MASK: ::c_uint = 0x0000_0020;
40744074
pub const FAN_MARK_IGNORED_SURV_MODIFY: ::c_uint = 0x0000_0040;
40754075
pub const FAN_MARK_FLUSH: ::c_uint = 0x0000_0080;
40764076
pub const FAN_MARK_EVICTABLE: ::c_uint = 0x0000_0200;
4077-
pub const FAN_MARK_IGNORE: ::c_uint = 0x0000_0100;
4077+
pub const FAN_MARK_IGNORE: ::c_uint = 0x0000_0400;
40784078

40794079
pub const FAN_MARK_INODE: ::c_uint = 0x0000_0000;
40804080
pub const FAN_MARK_MOUNT: ::c_uint = 0x0000_0010;

0 commit comments

Comments
 (0)