Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bca84b1

Browse files
severentgross35
authored andcommittedAug 17, 2024·
Correct the value of FAN_MARK_IGNORE
(apply <#3622> to `main`) (cherry picked from commit 4128640)
1 parent d744cf8 commit bca84b1

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4579,7 +4579,7 @@ pub const FAN_MARK_IGNORED_MASK: ::c_uint = 0x0000_0020;
45794579
pub const FAN_MARK_IGNORED_SURV_MODIFY: ::c_uint = 0x0000_0040;
45804580
pub const FAN_MARK_FLUSH: ::c_uint = 0x0000_0080;
45814581
pub const FAN_MARK_EVICTABLE: ::c_uint = 0x0000_0200;
4582-
pub const FAN_MARK_IGNORE: ::c_uint = 0x0000_0100;
4582+
pub const FAN_MARK_IGNORE: ::c_uint = 0x0000_0400;
45834583

45844584
pub const FAN_MARK_INODE: ::c_uint = 0x0000_0000;
45854585
pub const FAN_MARK_MOUNT: ::c_uint = 0x0000_0010;

0 commit comments

Comments
 (0)
Please sign in to comment.