From cdcc241167414d2f95539dbcad0caa614484615a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BChlbacher?= Date: Fri, 19 Jul 2024 23:30:57 +0200 Subject: [PATCH] refactor: fix clippy lint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Mühlbacher --- src/commands/mount.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/mount.rs b/src/commands/mount.rs index b9179e29..3a524c5c 100644 --- a/src/commands/mount.rs +++ b/src/commands/mount.rs @@ -361,7 +361,7 @@ fn cmd_mount_inner(cli: &Cli) -> Result<()> { let first_sb = &sbs[0]; if unsafe { bcachefs::bch2_sb_is_encrypted(first_sb.sb) } { - handle_unlock(cli, &first_sb)?; + handle_unlock(cli, first_sb)?; } for sb in &mut sbs {