Module Name: src
Committed By: jschauma
Date: Fri Jan 27 19:39:04 UTC 2023
Modified Files:
src/usr.bin/split: split.c
Log Message:
whitespace / comment pedantry
To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/usr.bin/split/split.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/split/split.c
diff -u src/usr.bin/split/split.c:1.27 src/usr.bin/split/split.c:1.28
--- src/usr.bin/split/split.c:1.27 Tue Jan 10 21:14:13 2017
+++ src/usr.bin/split/split.c Fri Jan 27 19:39:04 2023
@@ -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 @@ __COPYRIGHT("@(#) Copyright (c) 1987, 19
#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 @@ __RCSID("$NetBSD: split.c,v 1.27 2017/01
#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;