From 113f76eecbde60b5ed9603ad4417ada28897bc59 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sun, 7 Jan 2024 22:14:48 +0100 Subject: [PATCH] Address minor clippy lint --- fish-rust/src/fish_key_reader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish-rust/src/fish_key_reader.rs b/fish-rust/src/fish_key_reader.rs index 86cd4a4e1..4c0e31b6f 100644 --- a/fish-rust/src/fish_key_reader.rs +++ b/fish-rust/src/fish_key_reader.rs @@ -348,7 +348,7 @@ fn parse_flags(continuous_mode: &mut bool, verbose: &mut bool) -> bool { wgettext_fmt!( BUILTIN_ERR_UNKNOWN, "fish_key_reader", - &w.argv[w.woptind - 1] + w.argv[w.woptind - 1] ) ); return false;