mirror of
https://github.com/uutils/coreutils.git
synced 2025-12-23 08:47:37 +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);
|
||||
|
||||
static S_ISUID: u32 = 0o4000;
|
||||
static S_ISGID: u32 = 0o2000;
|
||||
const S_ISUID: u32 = 0o4000;
|
||||
const S_ISGID: u32 = 0o2000;
|
||||
|
||||
enum Permission {
|
||||
Read = 0o4,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue