diff --git a/src/printer.rs b/src/printer.rs index 880a8b4..b264792 100644 --- a/src/printer.rs +++ b/src/printer.rs @@ -194,6 +194,9 @@ impl<'a> InteractivePrinter<'a> { impl<'a> Printer for InteractivePrinter<'a> { fn print_header(&mut self, handle: &mut Write, file: InputFile) -> Result<()> { if !self.config.output_components.header() { + if ContentType::BINARY == self.content_type { + writeln!(handle, "")?; + } return Ok(()); }