diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/util.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -396,6 +396,7 @@ void horiz_line_nocurses(void) { for(int i = 0; i < 80; ++i) output("="); + output("\n"); } void (*horiz_line)(void) = horiz_line_nocurses; @@ -444,6 +445,7 @@ void heading_nocurses(const char *fmt, ...) output(" "); for(int i = 0; i < 40 - len - 1 - d; ++i) output("="); + output("\n"); } void (*heading)(const char*, ...) = heading_nocurses; |