summaryrefslogtreecommitdiffstats
path: root/games/cribbage
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1998-03-01 05:10:28 +0000
committerjkh <jkh@FreeBSD.org>1998-03-01 05:10:28 +0000
commit441f3c9dace4543ba229039711013ecfc24701a0 (patch)
tree11768c61275978338ad528091d06eb1cb3dc7302 /games/cribbage
parent69e5a1e9f571b8af39e0b507e63b81be43f49634 (diff)
downloadFreeBSD-src-441f3c9dace4543ba229039711013ecfc24701a0.zip
FreeBSD-src-441f3c9dace4543ba229039711013ecfc24701a0.tar.gz
Wargh! Who went and changed all the getopt() comparisons from -1 to
EOF? The getopt(3) manpage clearly states that the return value is *-1*, not EOF! Besides, getopt(3) isn't reading from a file. :) Noticed-while: merging to 2.2 (where this is correct).
Diffstat (limited to 'games/cribbage')
-rw-r--r--games/cribbage/crib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/games/cribbage/crib.c b/games/cribbage/crib.c
index 23c53df..22dddba 100644
--- a/games/cribbage/crib.c
+++ b/games/cribbage/crib.c
@@ -67,7 +67,7 @@ main(argc, argv)
/* revoke */
setgid(getgid());
- while ((ch = getopt(argc, argv, "eqr")) != EOF)
+ while ((ch = getopt(argc, argv, "eqr")) != -1)
switch (ch) {
case 'e':
explain = TRUE;
OpenPOWER on IntegriCloud