From e58dd8a7460b1e5cada35c4a893771e4eee805ed Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Sun, 23 Feb 2025 21:28:27 +0100 Subject: [PATCH] chore: add ';' for consistent formatting --- src/file_io.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/file_io.rs b/src/file_io.rs index 604e64f..f628b3c 100644 --- a/src/file_io.rs +++ b/src/file_io.rs @@ -124,14 +124,14 @@ impl InputFile { result.push(InputFile::Osc { filename: zip_file.name().to_string(), content: buf, - }) + }); } else { let mut buf = BytesMut::new(); let _ = zip_file.read(&mut buf); result.push(InputFile::Other { filename: zip_file.name().to_string(), content: buf.to_vec(), - }) + }); } } else { return Err(FileError::Parsing(