diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2004-04-07 14:09:36 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2004-04-07 14:09:36 +0000 |
commit | eef066e143e1ba9826b36b7e5b48c9851784f7a2 (patch) | |
tree | 4e08e5352af123e6189b9ebc0e78237b9ac537cf /sbin/disklabel | |
parent | d62260efbb210817cdf2745812dff843031c5840 (diff) |
Remove those option letters from the getopt string which do not have a case
handler below. millert@ ok
Diffstat (limited to 'sbin/disklabel')
-rw-r--r-- | sbin/disklabel/disklabel.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/disklabel/disklabel.c b/sbin/disklabel/disklabel.c index 7f7c07c3e69..16446a3f99f 100644 --- a/sbin/disklabel/disklabel.c +++ b/sbin/disklabel/disklabel.c @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.c,v 1.86 2003/12/20 09:29:27 jmc Exp $ */ +/* $OpenBSD: disklabel.c,v 1.87 2004/04/07 14:09:35 aaron Exp $ */ /* * Copyright (c) 1987, 1993 @@ -39,7 +39,7 @@ static const char copyright[] = #endif /* not lint */ #ifndef lint -static const char rcsid[] = "$OpenBSD: disklabel.c,v 1.86 2003/12/20 09:29:27 jmc Exp $"; +static const char rcsid[] = "$OpenBSD: disklabel.c,v 1.87 2004/04/07 14:09:35 aaron Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -146,7 +146,7 @@ main(int argc, char *argv[]) char print_unit = 0; FILE *t; - while ((ch = getopt(argc, argv, "BEFf:NRWb:cdenp:rs:tvw")) != -1) + while ((ch = getopt(argc, argv, "BEf:NRWb:cdenp:rs:tvw")) != -1) switch (ch) { #if NUMBOOT > 0 case 'B': |