mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-31 13:07:46 +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…
Add table
Add a link
Reference in a new issue