diff options
author | Warner Losh <imp@FreeBSD.org> | 1997-03-29 03:33:12 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 1997-03-29 03:33:12 +0000 |
commit | 8d64695c7c6791641c71b15441665bafc43c2bd0 (patch) | |
tree | cf87bbae47f28b546d1ad8e17e84cacc7b425da6 /sbin/disklabel/disklabel.c | |
parent | f37dd3ba03f77cd17af02a6e72bd8cb089026bce (diff) | |
download | src-8d64695c7c6791641c71b15441665bafc43c2bd0.tar.gz src-8d64695c7c6791641c71b15441665bafc43c2bd0.zip |
compare return value from getopt against -1 rather than EOF, per the final
posix standard on the topic.
Notes
Notes:
svn path=/head/; revision=24359
Diffstat (limited to 'sbin/disklabel/disklabel.c')
-rw-r--r-- | sbin/disklabel/disklabel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/disklabel/disklabel.c b/sbin/disklabel/disklabel.c index 032f601d1b7b..f0b2a8b99272 100644 --- a/sbin/disklabel/disklabel.c +++ b/sbin/disklabel/disklabel.c @@ -160,7 +160,7 @@ main(argc, argv) int ch, f, flag, error = 0; char *name = 0; - while ((ch = getopt(argc, argv, OPTIONS)) != EOF) + while ((ch = getopt(argc, argv, OPTIONS)) != -1) switch (ch) { #if NUMBOOT > 0 case 'B': |