Skip to content

Commit

Permalink
Fix "field is never read" warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
cakebaker committed Apr 10, 2024
1 parent b4e8a05 commit c6c2470
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/coreutils/dd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,14 @@ impl Options<Arg> for Settings {
self.ibs = b;
self.obs = b;
}
Arg::Cbs(_) => todo!(),
Arg::Cbs(_b) => todo!(),
Arg::Skip(b) => self.skip = b,
Arg::Seek(b) => self.seek = b,
Arg::Count(n) => self.count = n,
Arg::Status(level) => self.status = Some(level),
Arg::Conv(_) => todo!(),
Arg::Iflag(_) => todo!(),
Arg::Oflag(_) => todo!(),
Arg::Conv(_c) => todo!(),
Arg::Iflag(_f) => todo!(),
Arg::Oflag(_f) => todo!(),
}
}
}
Expand Down

0 comments on commit c6c2470

Please sign in to comment.