Skip to content

Commit

Permalink
flussab-aiger: Fix missing space when writing binary latch init
Browse files Browse the repository at this point in the history
  • Loading branch information
jix committed Sep 7, 2024
1 parent e604ce5 commit c241236
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions flussab-aiger/src/binary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -864,6 +864,7 @@ where
Some(true) => self.writer.write_all_defer_err(b" 1\n"),
Some(false) => self.writer.write_all_defer_err(b"\n"),
None => {
self.writer.write_all_defer_err(b" ");
flussab::write::text::ascii_digits(&mut self.writer, self.code);
self.writer.write_all_defer_err(b"\n");
}
Expand Down

0 comments on commit c241236

Please sign in to comment.