From d381f70814fcc5d4584f40926f3b9e43ae1e04eb Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 16 Feb 2016 12:57:55 +0100 Subject: [PATCH] libsmartcols: fill wrapped lines with space instead of 'x' Signed-off-by: Igor Gnatenko --- libsmartcols/src/table_print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsmartcols/src/table_print.c b/libsmartcols/src/table_print.c index 55996ebe3..06fcabe9f 100644 --- a/libsmartcols/src/table_print.c +++ b/libsmartcols/src/table_print.c @@ -376,7 +376,7 @@ static int print_pending_data( free(data); for (i = len; i < width; i++) - fputc('x', tb->out); /* padding */ + fputc(' ', tb->out); /* padding */ if (is_last_column(tb, cl)) return 0;