From: Karel Zak Date: Wed, 8 Jun 2022 09:07:58 +0000 (+0200) Subject: column: fix "0" placeholder X-Git-Tag: v2.39-rc1~621 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1dbe96fb64d50471199cbde9503347de81b0c644;p=thirdparty%2Futil-linux.git column: fix "0" placeholder Addresses: https://github.com/util-linux/util-linux/issues/1700 Signed-off-by: Karel Zak --- 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);