mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-08-04 15:07:47 +00:00
Change static to const
This commit is contained in:
parent
7d657e3c0d
commit
727d4843b8
1 changed files with 2 additions and 2 deletions
|
@ -349,8 +349,8 @@ fn path(path: &[u8], cond: PathCondition) -> bool {
|
||||||
|
|
||||||
let path = OsStr::from_bytes(path);
|
let path = OsStr::from_bytes(path);
|
||||||
|
|
||||||
static S_ISUID: u32 = 0o4000;
|
const S_ISUID: u32 = 0o4000;
|
||||||
static S_ISGID: u32 = 0o2000;
|
const S_ISGID: u32 = 0o2000;
|
||||||
|
|
||||||
enum Permission {
|
enum Permission {
|
||||||
Read = 0o4,
|
Read = 0o4,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue