Skip to content

Commit

Permalink
Merge pull request #3622 from severen/fix-fanotify-constant
Browse files Browse the repository at this point in the history
Correct the value of FAN_MARK_IGNORE
  • Loading branch information
JohnTitor committed May 1, 2024
2 parents 6607133 + 4128640 commit 71a1ee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/linux_like/linux/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4074,7 +4074,7 @@ pub const FAN_MARK_IGNORED_MASK: ::c_uint = 0x0000_0020;
pub const FAN_MARK_IGNORED_SURV_MODIFY: ::c_uint = 0x0000_0040;
pub const FAN_MARK_FLUSH: ::c_uint = 0x0000_0080;
pub const FAN_MARK_EVICTABLE: ::c_uint = 0x0000_0200;
pub const FAN_MARK_IGNORE: ::c_uint = 0x0000_0100;
pub const FAN_MARK_IGNORE: ::c_uint = 0x0000_0400;

pub const FAN_MARK_INODE: ::c_uint = 0x0000_0000;
pub const FAN_MARK_MOUNT: ::c_uint = 0x0000_0010;
Expand Down

0 comments on commit 71a1ee6

Please sign in to comment.