prepare_send_from: clippy: Avoid a lint

I think this is worse code, but it's not *significantly* worse.
This commit is contained in:
Ian Jackson 2022-05-20 16:44:55 +01:00
parent 24dde5ddf1
commit d3f261d5ef
1 changed files with 1 additions and 2 deletions

View File

@ -336,9 +336,8 @@ where
// polled after it gave Ready.
return Poll::Ready(Err(e));
}
Ok(x) => {
Ok(()) => {
dprintln!("poll: output poll = IF.Ok calling generator");
x
}
};