summaryrefslogtreecommitdiff
path: root/usr.bin/split
diff options
context:
space:
mode:
authorbjh21 <bjh21@NetBSD.org>2003-06-24 18:45:08 +0000
committerbjh21 <bjh21@NetBSD.org>2003-06-24 18:45:08 +0000
commit0de24d10b17d18a0b9abb4653ff63771ed7f56a8 (patch)
treecfc716335dd05e4f031878c054aa9a3a6d776dd0 /usr.bin/split
parentd1a05abed1178d7fd6189931e6bcdf69b30a8fe5 (diff)
Light KNF and comment tidying.
Diffstat (limited to 'usr.bin/split')
-rw-r--r--usr.bin/split/split.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/usr.bin/split/split.c b/usr.bin/split/split.c
index 2c6244cbd6b..c95e960667e 100644
--- a/usr.bin/split/split.c
+++ b/usr.bin/split/split.c
@@ -1,4 +1,4 @@
-/* $NetBSD: split.c,v 1.12 2003/06/24 00:09:26 bjh21 Exp $ */
+/* $NetBSD: split.c,v 1.13 2003/06/24 18:45:08 bjh21 Exp $ */
/*
* Copyright (c) 1987, 1993, 1994
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1987, 1993, 1994\n\
#if 0
static char sccsid[] = "@(#)split.c 8.3 (Berkeley) 4/25/94";
#endif
-__RCSID("$NetBSD: split.c,v 1.12 2003/06/24 00:09:26 bjh21 Exp $");
+__RCSID("$NetBSD: split.c,v 1.13 2003/06/24 18:45:08 bjh21 Exp $");
#endif /* not lint */
#include <sys/param.h>
@@ -121,7 +121,7 @@ main(int argc, char *argv[])
if ((numlines = strtoull(optarg, &ep, 10)) <= 0 || *ep)
errx(1, "%s: illegal line count.", optarg);
break;
- case 'a': /* Suffix length. */
+ case 'a': /* Suffix length. */
if ((sfxlen = strtol(optarg, &ep, 10)) <= 0 || *ep)
errx(1, "%s: illegal suffix length.", optarg);
break;
@@ -170,11 +170,11 @@ main(int argc, char *argv[])
if (ifd == -1) /* Stdin by default. */
ifd = 0;
- if (bytecnt) {
+ if (bytecnt)
split1(bytecnt);
- } else {
+ else
split2(numlines);
- }
+
return 0;
}
@@ -194,6 +194,7 @@ split1(unsigned long long bytecnt)
switch (len = read(ifd, bfr, MAXBSIZE)) {
case 0:
exit(0);
+ /* NOTREACHED */
case -1:
err(1, "read");
/* NOTREACHED */
@@ -245,6 +246,7 @@ split2(unsigned long long numlines)
switch (len = read(ifd, bfr, MAXBSIZE)) {
case 0:
exit(0);
+ /* NOTREACHED */
case -1:
err(1, "read");
/* NOTREACHED */