From 7e0cb59183440fc6e808cc69650a855503682361 Mon Sep 17 00:00:00 2001 From: Radu Marias Date: Thu, 9 May 2024 21:48:13 +0300 Subject: [PATCH] fix clippy error --- src/encryptedfs_fuse3.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/encryptedfs_fuse3.rs b/src/encryptedfs_fuse3.rs index 04ba5286..854786c2 100644 --- a/src/encryptedfs_fuse3.rs +++ b/src/encryptedfs_fuse3.rs @@ -136,14 +136,14 @@ impl EncryptedFsFuse3 { password_provider: Box, cipher: Cipher, direct_io: bool, - #[allow(clippy::no_effect_underscore_binding)] _suid_support: bool, + #[allow(unused_variables)] suid_support: bool, ) -> FsResult { #[cfg(feature = "abi-7-26")] { Ok(Self { fs: EncryptedFs::new(data_dir, tmp_dir, password_provider, cipher).await?, direct_io, - suid_support: _suid_support, + suid_support, }) } #[cfg(not(feature = "abi-7-26"))]