swab(1): fix type errors
This commit is contained in:
parent
7b930363bf
commit
c554b96722
@ -75,20 +75,20 @@ fn main() -> ExitCode {
|
|||||||
if let Err(e) = output.write(&right)
|
if let Err(e) = output.write(&right)
|
||||||
.and_then(|_| output.write(&left)) {
|
.and_then(|_| output.write(&left)) {
|
||||||
err(&argv[0], e);
|
err(&argv[0], e);
|
||||||
break EX_IOERR // write error
|
break ExitCode::from(EX_IOERR as u8) // write error
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
Ok(v) => { // partial read; partially write
|
Ok(v) => { // partial read; partially write
|
||||||
if let Err(e) = output.write(&buf[..v]) {
|
if let Err(e) = output.write(&buf[..v]) {
|
||||||
err(&argv[0], e);
|
err(&argv[0], e);
|
||||||
break EX_IOERR // write error
|
break ExitCode::from(EX_IOERR as u8) // write error
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
Err(e) if e.kind() == ErrorKind::Interrupted && force => continue,
|
Err(e) if e.kind() == ErrorKind::Interrupted && force => continue,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
err(&argv[0], e);
|
err(&argv[0], e);
|
||||||
break EX_IOERR // read error (or signal)
|
break ExitCode::from(EX_IOERR as u8) // read error (or signal)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user