summaryrefslogtreecommitdiff
path: root/usr.bin/split
diff options
context:
space:
mode:
authorjschauma <jschauma@NetBSD.org>2023-02-14 18:26:59 +0000
committerjschauma <jschauma@NetBSD.org>2023-02-14 18:26:59 +0000
commitf8e37b08c00441baf74dd2aae531bcfdd89d7e4c (patch)
treee58094f93a9824d06f851dd5848e8c4d7d85c5d6 /usr.bin/split
parente7112976d44b00234705eeedfe06bf0d9a342eae (diff)
sort getopts string
Diffstat (limited to 'usr.bin/split')
-rw-r--r--usr.bin/split/split.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/split/split.c b/usr.bin/split/split.c
index 4b0dcb950b9..a725e54b36a 100644
--- a/usr.bin/split/split.c
+++ b/usr.bin/split/split.c
@@ -1,4 +1,4 @@
-/* $NetBSD: split.c,v 1.30 2023/02/12 20:43:21 jschauma Exp $ */
+/* $NetBSD: split.c,v 1.31 2023/02/14 18:26:59 jschauma Exp $ */
/*
* Copyright (c) 1987, 1993, 1994
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1987, 1993, 1994\
#if 0
static char sccsid[] = "@(#)split.c 8.3 (Berkeley) 4/25/94";
#endif
-__RCSID("$NetBSD: split.c,v 1.30 2023/02/12 20:43:21 jschauma Exp $");
+__RCSID("$NetBSD: split.c,v 1.31 2023/02/14 18:26:59 jschauma Exp $");
#endif /* not lint */
#include <sys/param.h>
@@ -79,7 +79,7 @@ main(int argc, char *argv[])
off_t numlines = 0; /* Line count to split on. */
off_t chunks = 0; /* Number of chunks to split into. */
- while ((ch = getopt(argc, argv, "0123456789b:l:a:n:")) != -1)
+ while ((ch = getopt(argc, argv, "0123456789a:b:l:n:")) != -1)
switch (ch) {
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':