mirror of
https://github.com/uutils/coreutils
synced 2024-11-05 14:21:32 +00:00
dd: fix some clippy warnings 'variable does not need to be mutable'
This commit is contained in:
parent
93f28dacc0
commit
916f014ef0
1 changed files with 3 additions and 3 deletions
|
@ -295,7 +295,7 @@ impl Parser {
|
|||
|
||||
#[allow(clippy::cognitive_complexity)]
|
||||
fn parse_input_flags(&mut self, val: &str) -> Result<(), ParseError> {
|
||||
let mut i = &mut self.iflag;
|
||||
let i = &mut self.iflag;
|
||||
for f in val.split(',') {
|
||||
match f {
|
||||
// Common flags
|
||||
|
@ -327,7 +327,7 @@ impl Parser {
|
|||
|
||||
#[allow(clippy::cognitive_complexity)]
|
||||
fn parse_output_flags(&mut self, val: &str) -> Result<(), ParseError> {
|
||||
let mut o = &mut self.oflag;
|
||||
let o = &mut self.oflag;
|
||||
for f in val.split(',') {
|
||||
match f {
|
||||
// Common flags
|
||||
|
@ -357,7 +357,7 @@ impl Parser {
|
|||
}
|
||||
|
||||
fn parse_conv_flags(&mut self, val: &str) -> Result<(), ParseError> {
|
||||
let mut c = &mut self.conv;
|
||||
let c = &mut self.conv;
|
||||
for f in val.split(',') {
|
||||
match f {
|
||||
// Conversion
|
||||
|
|
Loading…
Reference in a new issue