We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68cd67e commit 56c17f2Copy full SHA for 56c17f2
src/unix/linux_like/linux/mod.rs
@@ -2129,7 +2129,8 @@ pub const _PC_ALLOC_SIZE_MIN: c_int = 18;
2129
pub const _PC_SYMLINK_MAX: c_int = 19;
2130
pub const _PC_2_SYMLINKS: c_int = 20;
2131
2132
-pub const MS_NOUSER: c_ulong = 0xffffffff80000000;
+// FIXME: should this be an int? The suffix is `U` not `UL`.
2133
+pub const MS_NOUSER: c_ulong = 1 << 31;
2134
2135
pub const _SC_ARG_MAX: c_int = 0;
2136
pub const _SC_CHILD_MAX: c_int = 1;
0 commit comments