mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +00:00
stat: fsext.rs: remove useless brackets
This commit is contained in:
parent
676f00fea3
commit
03ce99b455
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ pub use self::libc::{S_IFMT, S_IFDIR, S_IFCHR, S_IFBLK, S_IFREG, S_IFIFO, S_IFLN
|
|||
#[macro_export]
|
||||
macro_rules! has {
|
||||
($mode:expr, $perm:expr) => (
|
||||
($mode & $perm != 0)
|
||||
$mode & $perm != 0
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue