From 0a7bd5c4e434754db0207468c35d1477b6f1a3bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sosth=C3=A8ne=20Gu=C3=A9don?= Date: Wed, 25 Jan 2023 09:35:32 +0100 Subject: [PATCH] Use == for readability --- src/pipe.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipe.rs b/src/pipe.rs index c1de7d2..cc0cbfd 100644 --- a/src/pipe.rs +++ b/src/pipe.rs @@ -343,7 +343,7 @@ where #[inline(never)] pub fn poll_app(&mut self) { - if let State::Processing = self.state { + if State::Processing == self.state { // info!("processing, checking for response, interchange state {:?}", // self.interchange.state()).ok();