Auto merge of #1537 - nielx:fix/stat-constants, r=gnzlbg

Haiku: Fix constants for S_IFIFO and S_IFCHR
This commit is contained in:
bors 2019-10-10 12:03:26 +00:00
commit 3a1b3a7f4c
1 changed files with 2 additions and 2 deletions

View File

@ -570,8 +570,8 @@ pub const O_NOFOLLOW: ::c_int = 0x00080000;
pub const O_NOCACHE: ::c_int = 0x00100000;
pub const O_DIRECTORY: ::c_int = 0x00200000;
pub const S_IFIFO: ::mode_t = 61440;
pub const S_IFCHR: ::mode_t = 49152;
pub const S_IFIFO: ::mode_t = 4096;
pub const S_IFCHR: ::mode_t = 8192;
pub const S_IFBLK: ::mode_t = 24576;
pub const S_IFDIR: ::mode_t = 16384;
pub const S_IFREG: ::mode_t = 32768;