mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
refactor/wc ~ fix cargo clippy
complaint (clippy::needless_borrow)
This commit is contained in:
parent
a8a2b3ec84
commit
8f0d42da39
1 changed files with 2 additions and 2 deletions
|
@ -374,8 +374,8 @@ fn wc(inputs: Vec<Input>, settings: &Settings) -> Result<(), u32> {
|
||||||
let num_inputs = inputs.len();
|
let num_inputs = inputs.len();
|
||||||
|
|
||||||
for input in &inputs {
|
for input in &inputs {
|
||||||
let word_count = word_count_from_input(&input, settings).unwrap_or_else(|err| {
|
let word_count = word_count_from_input(input, settings).unwrap_or_else(|err| {
|
||||||
show_error(&input, err);
|
show_error(input, err);
|
||||||
error_count += 1;
|
error_count += 1;
|
||||||
WordCount::default()
|
WordCount::default()
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue