From 2f62d9fe3ed3c03fc9d2b57b0559ff5c8359b294 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Thu, 21 Jan 2016 17:37:21 +0100 Subject: [PATCH] libsmartcols: put new line after title Signed-off-by: Igor Gnatenko --- libsmartcols/src/table_print.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libsmartcols/src/table_print.c b/libsmartcols/src/table_print.c index fcf827075..c2794c998 100644 --- a/libsmartcols/src/table_print.c +++ b/libsmartcols/src/table_print.c @@ -595,6 +595,8 @@ static void print_title(struct libscols_table *tb) if (tb->title_color) fputs(UL_COLOR_RESET, tb->out); + + fputc('\n', tb->out); } static int print_header(struct libscols_table *tb, struct libscols_buffer *buf)