We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbe377a commit 8f8d69cCopy full SHA for 8f8d69c
src/parse.rs
@@ -62,7 +62,7 @@ pub(crate) fn parse_opts(mut input: &[u8]) -> Option<Opts> {
62
63
if name.eq_ignore_ascii_case("blksize") {
64
if let Ok(val) = u16::from_str(val) {
65
- if val >= 8 && val <= 65464 {
+ if (8..=65464).contains(&val) {
66
opts.block_size = Some(val);
67
}
68
0 commit comments