libsmartcols: fill wrapped lines with space instead of 'x'

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
This commit is contained in:
Igor Gnatenko 2016-02-16 12:57:55 +01:00
parent f776d76e49
commit d381f70814
1 changed files with 1 additions and 1 deletions

View File

@ -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;