From 1c3ed5bf17503e22ef8da306dfaae14b27cd323d Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 24 Feb 2016 13:42:28 +0100 Subject: [PATCH] libsmartcols: fix stupid typo Signed-off-by: Karel Zak --- libsmartcols/src/table_print.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libsmartcols/src/table_print.c b/libsmartcols/src/table_print.c index e37f27761..96ec13759 100644 --- a/libsmartcols/src/table_print.c +++ b/libsmartcols/src/table_print.c @@ -957,8 +957,7 @@ static int count_column_width(struct libscols_table *tb, cl->width = 0; - - if (cl->width_min) { + if (!cl->width_min) { if (cl->width_hint < 1 && scols_table_is_maxout(tb)) cl->width_min = (size_t) (cl->width_hint * tb->termwidth) - (is_last_column(cl) ? 0 : 1); if (scols_cell_get_data(&cl->header)) {