From cafb4d24b01e1df04ffb42982dd520f86dfd67c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Tue, 26 Nov 2024 10:31:10 +0100 Subject: [PATCH] run cargo fmt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabian Grünbichler --- src/decoder/mod.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/decoder/mod.rs b/src/decoder/mod.rs index 613ec12..1d5deb1 100644 --- a/src/decoder/mod.rs +++ b/src/decoder/mod.rs @@ -297,10 +297,7 @@ impl DecoderImpl { // hierarchy and parse the next PXAR_FILENAME or the PXAR_GOODBYE: self.read_next_item().await?; } - State::InPayload { - offset, - .. - } => { + State::InPayload { offset, .. } => { if self.input.payload().is_some() { // Update consumed payload as given by the offset referenced by the content reader self.payload_consumed += offset;