Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/split whitespace / comment pedantry



details:   https://anonhg.NetBSD.org/src/rev/ee54e2d56bdd
branches:  trunk
changeset: 373250:ee54e2d56bdd
user:      jschauma <jschauma%NetBSD.org@localhost>
date:      Fri Jan 27 19:39:04 2023 +0000

description:
whitespace / comment pedantry

diffstat:

 usr.bin/split/split.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (31 lines):

diff -r 958d38c762d8 -r ee54e2d56bdd usr.bin/split/split.c
--- a/usr.bin/split/split.c     Fri Jan 27 15:36:58 2023 +0000
+++ b/usr.bin/split/split.c     Fri Jan 27 19:39:04 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: split.c,v 1.27 2017/01/10 21:14:13 christos Exp $      */
+/*     $NetBSD: split.c,v 1.28 2023/01/27 19:39:04 jschauma Exp $      */
 
 /*
  * Copyright (c) 1987, 1993, 1994
@@ -39,7 +39,7 @@
 #if 0
 static char sccsid[] = "@(#)split.c    8.3 (Berkeley) 4/25/94";
 #endif
-__RCSID("$NetBSD: split.c,v 1.27 2017/01/10 21:14:13 christos Exp $");
+__RCSID("$NetBSD: split.c,v 1.28 2023/01/27 19:39:04 jschauma Exp $");
 #endif /* not lint */
 
 #include <sys/param.h>
@@ -56,10 +56,10 @@
 
 #define DEFLINE        1000            /* Default num lines per file. */
 
-static int file_open;          /* If a file open. */
+static int file_open;          /* If a file is open. */
 static int ifd = STDIN_FILENO, ofd = -1; /* Input/output file descriptors. */
 static char *fname;            /* File name prefix. */
-static size_t sfxlen = 2;              /* suffix length. */
+static size_t sfxlen = 2;      /* Suffix length. */
 
 static void newfile(void);
 static void split1(off_t, int) __dead;



Home | Main Index | Thread Index | Old Index