Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/column Whitespace nit.



details:   https://anonhg.NetBSD.org/src/rev/d3083d258fdc
branches:  trunk
changeset: 943111:d3083d258fdc
user:      simonb <simonb%NetBSD.org@localhost>
date:      Thu Aug 27 01:52:04 2020 +0000

description:
Whitespace nit.

diffstat:

 usr.bin/column/column.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 6ea515a80a22 -r d3083d258fdc usr.bin/column/column.c
--- a/usr.bin/column/column.c   Thu Aug 27 00:07:56 2020 +0000
+++ b/usr.bin/column/column.c   Thu Aug 27 01:52:04 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: column.c,v 1.21 2008/07/21 14:19:21 lukem Exp $        */
+/*     $NetBSD: column.c,v 1.22 2020/08/27 01:52:04 simonb Exp $       */
 
 /*
  * Copyright (c) 1989, 1993, 1994
@@ -39,7 +39,7 @@
 #if 0
 static char sccsid[] = "@(#)column.c   8.4 (Berkeley) 5/4/95";
 #endif
-__RCSID("$NetBSD: column.c,v 1.21 2008/07/21 14:19:21 lukem Exp $");
+__RCSID("$NetBSD: column.c,v 1.22 2020/08/27 01:52:04 simonb Exp $");
 #endif /* not lint */
 
 #include <sys/types.h>
@@ -246,7 +246,7 @@
                }
        }
        for (cnt = 0, t = tbl; cnt < entries; ++cnt, ++t) {
-               for (coloff = 0; coloff < t->cols  - 1; ++coloff)
+               for (coloff = 0; coloff < t->cols - 1; ++coloff)
                        (void)printf("%s%*s", t->list[coloff],
                            lens[coloff] - t->len[coloff] + 2, " ");
                (void)printf("%s\n", t->list[coloff]);



Home | Main Index | Thread Index | Old Index