Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
xyproto committed Feb 5, 2024
1 parent fb8efd6 commit b4943c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,8 @@ static inline void print_or_suppress_zero_line(const char* l, const int nz)
if (zero_seen == 2) {
fputs_or_die(z);
} else if (zero_seen > 2) {
fputs_or_die("*\n");
putc_or_die('*');
putc_or_die('\n');
}
}
if (nz >= 0 || zero_seen > 0) {
Expand Down

0 comments on commit b4943c0

Please sign in to comment.