diff --git a/src/uu/od/src/parse_inputs.rs b/src/uu/od/src/parse_inputs.rs index 21da091e1..242a3abfd 100644 --- a/src/uu/od/src/parse_inputs.rs +++ b/src/uu/od/src/parse_inputs.rs @@ -5,7 +5,7 @@ pub trait CommandLineOpts { /// returns all commandline parameters which do not belong to an option. fn inputs(&self) -> Vec; /// tests if any of the specified options is present. - fn opts_present(&self, &[&str]) -> bool; + fn opts_present(&self, _: &[&str]) -> bool; } /// Implementation for `getopts`