Module Name:    src
Committed By:   simonb
Date:           Thu Aug 27 01:52:04 UTC 2020

Modified Files:
        src/usr.bin/column: column.c

Log Message:
Whitespace nit.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/usr.bin/column/column.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/column/column.c
diff -u src/usr.bin/column/column.c:1.21 src/usr.bin/column/column.c:1.22
--- src/usr.bin/column/column.c:1.21	Mon Jul 21 14:19:21 2008
+++ src/usr.bin/column/column.c	Thu Aug 27 01:52:04 2020
@@ -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 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 19
 #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 @@ maketbl(void)
 		}
 	}
 	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]);

Reply via email to