1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

stat: fsext.rs: remove useless brackets

This commit is contained in:
Knight 2016-06-01 01:24:13 +08:00
parent 676f00fea3
commit 03ce99b455

View file

@ -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_export]
macro_rules! has { macro_rules! has {
($mode:expr, $perm:expr) => ( ($mode:expr, $perm:expr) => (
($mode & $perm != 0) $mode & $perm != 0
) )
} }