We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2904816 commit f4edc12Copy full SHA for f4edc12
src/uu/du/src/du.rs
@@ -718,7 +718,7 @@ fn read_files_from(file_name: &str) -> Result<Vec<PathBuf>, std::io::Error> {
718
#[allow(clippy::cognitive_complexity)]
719
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
720
let raw_args = args.collect::<Vec<_>>();
721
- let (settings, operands) = Settings::default()
+ let (settings, _operands) = Settings::default()
722
.parse(&raw_args)
723
.map_err(|e| std::io::Error::other(format!("{e}")))?;
724
let matches = uu_app().try_get_matches_from(raw_args.iter())?;
0 commit comments