From: Karel Zak Date: Thu, 16 Dec 2010 11:12:43 +0000 (+0100) Subject: lib: [tt] fix alignment of the last tree child X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f872ed1f22c50c3cbfb80bc4062ea995c6071964;p=util-linux lib: [tt] fix alignment of the last tree child Signed-off-by: Karel Zak --- diff --git a/lib/tt.c b/lib/tt.c index f371a93a..1043ee32 100644 --- a/lib/tt.c +++ b/lib/tt.c @@ -317,7 +317,7 @@ static char *line_get_ascii_art(struct tt_line *ln, char *buf, size_t *bufsz) return NULL; if (list_last_entry(&ln->ln_children, &ln->parent->ln_branch)) - art = " "; + art = " "; else art = ln->table->symbols->vert;