From: Paul Eggert Date: Mon, 31 Jan 2022 16:42:07 +0000 (-0800) Subject: expand: remove IF_LINT X-Git-Tag: v9.1~90 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec8f3ea958deaca460d9c64add4342018fa5b15d;p=thirdparty%2Fcoreutils.git expand: remove IF_LINT * src/expand.c (expand): Remove no-longer-needed IF_LINT. --- diff --git a/src/expand.c b/src/expand.c index d616997dca..ed78ca81d7 100644 --- a/src/expand.c +++ b/src/expand.c @@ -133,7 +133,7 @@ expand (void) { /* Column the next input tab stop is on. */ uintmax_t next_tab_column; - bool last_tab IF_LINT (=0); + bool last_tab; next_tab_column = get_next_tab_column (column, &tab_index, &last_tab);