From f4d37838673f022c8c05c4beb5057bdb683a76ca Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sun, 28 May 2017 10:37:06 +0100 Subject: misc: remove stray semicolons Signed-off-by: Sami Kerola --- text-utils/column.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'text-utils/column.c') diff --git a/text-utils/column.c b/text-utils/column.c index c036b4de8..1144ef87a 100644 --- a/text-utils/column.c +++ b/text-utils/column.c @@ -485,7 +485,7 @@ static void columnate_fillrows(struct column_control *ctl) ctl->maxlength = (ctl->maxlength + TABCHAR_CELLS) & ~(TABCHAR_CELLS - 1); numcols = ctl->termwidth / ctl->maxlength; endcol = ctl->maxlength; - for (chcnt = col = 0, lp = ctl->ents;; ++lp) { + for (chcnt = col = 0, lp = ctl->ents; /* nothing */; ++lp) { fputws(*lp, stdout); chcnt += width(*lp); if (!--ctl->nents) -- cgit v1.2.3-55-g7522