1
0
mirror of https://github.com/pcvolkmer/osc-variant.git synced 2025-07-03 09:12:54 +00:00

chore: add ';' for consistent formatting

This commit is contained in:
2025-02-23 21:28:27 +01:00
parent 3bf5747387
commit e58dd8a746

View File

@ -124,14 +124,14 @@ impl InputFile {
result.push(InputFile::Osc { result.push(InputFile::Osc {
filename: zip_file.name().to_string(), filename: zip_file.name().to_string(),
content: buf, content: buf,
}) });
} else { } else {
let mut buf = BytesMut::new(); let mut buf = BytesMut::new();
let _ = zip_file.read(&mut buf); let _ = zip_file.read(&mut buf);
result.push(InputFile::Other { result.push(InputFile::Other {
filename: zip_file.name().to_string(), filename: zip_file.name().to_string(),
content: buf.to_vec(), content: buf.to_vec(),
}) });
} }
} else { } else {
return Err(FileError::Parsing( return Err(FileError::Parsing(