aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/util.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.c b/src/util.c
index 05273f1..c43ae65 100644
--- a/src/util.c
+++ b/src/util.c
@@ -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;