diff options
| author | lukem <lukem@NetBSD.org> | 1999-11-02 10:52:49 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 1999-11-02 10:52:49 +0000 |
| commit | 0895d2339ea10c02861944882d4b7f49b44dadae (patch) | |
| tree | 75a93259aa630082d0b8ea5516379f529f3bb0d7 /usr.bin/split | |
| parent | 5cba30bd7e55a8d581cc421bb6b85d4d58e01780 (diff) | |
remove superfluous '-' in getopt string
Diffstat (limited to 'usr.bin/split')
| -rw-r--r-- | usr.bin/split/split.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/split/split.c b/usr.bin/split/split.c index 7da56128d66..68cc04bc16d 100644 --- a/usr.bin/split/split.c +++ b/usr.bin/split/split.c @@ -1,4 +1,4 @@ -/* $NetBSD: split.c,v 1.6 1997/10/19 23:26:58 lukem Exp $ */ +/* $NetBSD: split.c,v 1.7 1999/11/02 10:53:59 lukem 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.6 1997/10/19 23:26:58 lukem Exp $"); +__RCSID("$NetBSD: split.c,v 1.7 1999/11/02 10:53:59 lukem Exp $"); #endif /* not lint */ #include <sys/param.h> @@ -79,7 +79,7 @@ main(argc, argv) int ch; char *ep, *p; - while ((ch = getopt(argc, argv, "-0123456789b:l:")) != -1) + while ((ch = getopt(argc, argv, "0123456789b:l:")) != -1) switch (ch) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': |
