summaryrefslogtreecommitdiffstats
path: root/libsmartcols
diff options
context:
space:
mode:
authorIgor Gnatenko2016-02-16 12:57:55 +0100
committerIgor Gnatenko2016-02-16 12:57:55 +0100
commitd381f70814fcc5d4584f40926f3b9e43ae1e04eb (patch)
tree5a1530f9c90f20210944dee7ca83d88eb4156c54 /libsmartcols
parentbuild-sys: use $PKG_CONFIG (diff)
downloadkernel-qcow2-util-linux-d381f70814fcc5d4584f40926f3b9e43ae1e04eb.tar.gz
kernel-qcow2-util-linux-d381f70814fcc5d4584f40926f3b9e43ae1e04eb.tar.xz
kernel-qcow2-util-linux-d381f70814fcc5d4584f40926f3b9e43ae1e04eb.zip
libsmartcols: fill wrapped lines with space instead of 'x'
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'libsmartcols')
-rw-r--r--libsmartcols/src/table_print.c2
1 files changed, 1 insertions, 1 deletions
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;