From 1dbe96fb64d50471199cbde9503347de81b0c644 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 8 Jun 2022 11:07:58 +0200 Subject: [PATCH] column: fix "0" placeholder Addresses: https://github.com/util-linux/util-linux/issues/1700 Signed-off-by: Karel Zak --- text-utils/column.c | 1 + 1 file changed, 1 insertion(+) diff --git a/text-utils/column.c b/text-utils/column.c index f3a260cabe..245c2dd8d6 100644 --- a/text-utils/column.c +++ b/text-utils/column.c @@ -339,6 +339,7 @@ static void apply_columnflag_from_list(struct column_control *ctl, const char *l while (scols_table_next_column(ctl->tab, itr, &cl) == 0) column_set_flag(cl, flag); scols_free_iter(itr); + return; } all = split_or_error(list, errmsg); -- 2.47.2