From: Igor Gnatenko Date: Tue, 16 Feb 2016 11:57:55 +0000 (+0100) Subject: libsmartcols: fill wrapped lines with space instead of 'x' X-Git-Tag: v2.28-rc1~95^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d381f70814fcc5d4584f40926f3b9e43ae1e04eb;p=thirdparty%2Futil-linux.git libsmartcols: fill wrapped lines with space instead of 'x' Signed-off-by: Igor Gnatenko --- diff --git a/libsmartcols/src/table_print.c b/libsmartcols/src/table_print.c index 55996ebe36..06fcabe9f1 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;