1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-04 06:57:47 +00:00

Change static to const

This commit is contained in:
Ian Douglas Scott 2018-03-16 20:14:50 -07:00
parent 7d657e3c0d
commit 727d4843b8
No known key found for this signature in database
GPG key ID: 4924E10E199B5959

View file

@ -349,8 +349,8 @@ fn path(path: &[u8], cond: PathCondition) -> bool {
let path = OsStr::from_bytes(path);
static S_ISUID: u32 = 0o4000;
static S_ISGID: u32 = 0o2000;
const S_ISUID: u32 = 0o4000;
const S_ISGID: u32 = 0o2000;
enum Permission {
Read = 0o4,