summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tree.c b/tree.c
index 3dbbbd77..f6351504 100644
--- a/tree.c
+++ b/tree.c
@@ -239,8 +239,9 @@ print_man(const struct man_node *n, int indent)
if (n->span) {
assert(NULL == p);
+ printf("tbl: ");
for (dp = n->span->first; dp; dp = dp->next) {
- printf("tbl: [%s]", dp->string);
+ printf("[%s]", dp->string);
if (dp->next)
putchar(' ');
}