mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 23:32:39 +00:00
fix the clippy warning
This commit is contained in:
parent
23f5f55560
commit
38c0880989
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
|
|||
print!("{}", separator);
|
||||
}
|
||||
} else {
|
||||
return Err(USimpleError::new(1, format!("missing operand")));
|
||||
return Err(UUsageError::new(1, "missing operand".to_string()));
|
||||
}
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Reference in a new issue