Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
core.sys.linux.sys.inotify: Fix typo in identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberShadow committed May 28, 2016
1 parent fedcd3c commit 383d170
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/core/sys/linux/sys/inotify.d
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ enum: uint
IN_DELETE = 0x00000200,
IN_DELETE_SELF = 0x00000400,
IN_MOVE_SELF = 0x00000800,
IN_UMOUNT = 0x00002000,
IN_UNMOUNT = 0x00002000,
IN_Q_OVERFLOW = 0x00004000,
IN_IGNORED = 0x00008000,
IN_CLOSE = 0x00000018,
Expand All @@ -48,6 +48,9 @@ enum: uint
IN_ALL_EVENTS = 0x80000FFF,
}

// Old typo, preserved for compatibility
enum IN_UMOUNT = IN_UNMOUNT;

version (X86)
{
enum IN_CLOEXEC = 0x80000; // octal!2000000
Expand Down

0 comments on commit 383d170

Please sign in to comment.