Skip to content

Commit f4edc12

Browse files
committed
fixup! du: parse blocksize and apparent-size using uutils-args
1 parent 2904816 commit f4edc12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/uu/du/src/du.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ fn read_files_from(file_name: &str) -> Result<Vec<PathBuf>, std::io::Error> {
718718
#[allow(clippy::cognitive_complexity)]
719719
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
720720
let raw_args = args.collect::<Vec<_>>();
721-
let (settings, operands) = Settings::default()
721+
let (settings, _operands) = Settings::default()
722722
.parse(&raw_args)
723723
.map_err(|e| std::io::Error::other(format!("{e}")))?;
724724
let matches = uu_app().try_get_matches_from(raw_args.iter())?;

0 commit comments

Comments
 (0)