Skip to content

Commit

Permalink
fix clippy error
Browse files Browse the repository at this point in the history
  • Loading branch information
radumarias committed May 9, 2024
1 parent 75ca612 commit 7e0cb59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/encryptedfs_fuse3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,14 @@ impl EncryptedFsFuse3 {
password_provider: Box<dyn PasswordProvider>,
cipher: Cipher,
direct_io: bool,
#[allow(clippy::no_effect_underscore_binding)] _suid_support: bool,
#[allow(unused_variables)] suid_support: bool,
) -> FsResult<Self> {
#[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"))]
Expand Down

0 comments on commit 7e0cb59

Please sign in to comment.