From 727d4843b801f8a701cde41aec50869e953f1cd1 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Fri, 16 Mar 2018 20:14:50 -0700 Subject: [PATCH] Change static to const --- src/test/test.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/test.rs b/src/test/test.rs index 3628d9e56..690fbcceb 100644 --- a/src/test/test.rs +++ b/src/test/test.rs @@ -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,