From 3ab8b53532edf5a399b63b221ed78a419ccbb3f6 Mon Sep 17 00:00:00 2001 From: Kornel Date: Wed, 21 May 2025 00:24:48 +0100 Subject: [PATCH] rustfmt ;( --- tokio-boring/src/lib.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tokio-boring/src/lib.rs b/tokio-boring/src/lib.rs index d0d1502e..89d10127 100644 --- a/tokio-boring/src/lib.rs +++ b/tokio-boring/src/lib.rs @@ -240,9 +240,7 @@ where return Poll::Pending; } Err(e) => { - return Poll::Ready(Err(e - .into_io_error() - .unwrap_or_else(io::Error::other))); + return Poll::Ready(Err(e.into_io_error().unwrap_or_else(io::Error::other))); } }