mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 07:12:44 +00:00
Merge pull request #5259 from devnexen/truncate_clippy_fix
truncate clippy fix.
This commit is contained in:
commit
e2614796ed
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
|
|||
.unwrap_or_default();
|
||||
|
||||
if files.is_empty() {
|
||||
return Err(UUsageError::new(1, "missing file operand"));
|
||||
Err(UUsageError::new(1, "missing file operand"))
|
||||
} else {
|
||||
let io_blocks = matches.get_flag(options::IO_BLOCKS);
|
||||
let no_create = matches.get_flag(options::NO_CREATE);
|
||||
|
|
Loading…
Reference in a new issue