From 131261620f35997be1cf2b4726577c2c284335d2 Mon Sep 17 00:00:00 2001 From: "okbob@github.com" Date: Mon, 23 Mar 2026 20:39:31 +0100 Subject: [PATCH] fix expended aligned format --- src/fe_utils/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe_utils/print.c b/src/fe_utils/print.c index 12d969e8666..58a04a902d5 100644 --- a/src/fe_utils/print.c +++ b/src/fe_utils/print.c @@ -1445,7 +1445,7 @@ print_aligned_vertical(const printTableContent *cont, /* * Calculate available width for data in wrapped mode */ - if (cont->opt->format == PRINT_WRAPPED) + if (cont->opt->format == PRINT_WRAPPED || cont->opt->format == PRINT_ALIGNED) { unsigned int swidth, rwidth = 0, -- 2.53.0