X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/0a7de7458d150b5d4dffc935ba399be265ef0a1a..cb3231590a3c94ab4375e2228bd5e86b0cf1ad7e:/bsd/sys/fsevents.h diff --git a/bsd/sys/fsevents.h b/bsd/sys/fsevents.h index 8779bc362..4ee5a460a 100644 --- a/bsd/sys/fsevents.h +++ b/bsd/sys/fsevents.h @@ -96,11 +96,11 @@ // These are special bits that be set in the 32-bit mode // field that /dev/fsevents provides. // -#define FSE_MODE_HLINK (1 << 31) // notification is for a hard-link -#define FSE_MODE_LAST_HLINK (1 << 30) // link count == 0 on a hard-link delete -#define FSE_REMOTE_DIR_EVENT (1 << 29) // this is a remotely generated directory-level granularity event -#define FSE_TRUNCATED_PATH (1 << 28) // the path for this item had to be truncated -#define FSE_MODE_CLONE (1 << 27) // notification is for a clone +#define FSE_MODE_HLINK (1U << 31) // notification is for a hard-link +#define FSE_MODE_LAST_HLINK (1U << 30) // link count == 0 on a hard-link delete +#define FSE_REMOTE_DIR_EVENT (1U << 29) // this is a remotely generated directory-level granularity event +#define FSE_TRUNCATED_PATH (1U << 28) // the path for this item had to be truncated +#define FSE_MODE_CLONE (1U << 27) // notification is for a clone // ioctl's on /dev/fsevents typedef struct fsevent_clone_args {