]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
- 'cango' is used beyond a bool type. make it an int.
authormrg <mrg@NetBSD.org>
Mon, 4 Feb 2019 03:29:41 +0000 (03:29 +0000)
committermrg <mrg@NetBSD.org>
Mon, 4 Feb 2019 03:29:41 +0000 (03:29 +0000)
- add a couple of fallthru comments.

mille/comp.c

index 83f8aa3a1aaf1f7e5497658449712c05a7a47928..2b59bbd7305af49a0c192ed6d5ad3f0500e2c11b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: comp.c,v 1.13 2009/05/25 23:44:04 dholland Exp $       */
+/*     $NetBSD: comp.c,v 1.14 2019/02/04 03:29:41 mrg Exp $    */
 
 /*
  * Copyright (c) 1982, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)comp.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: comp.c,v 1.13 2009/05/25 23:44:04 dholland Exp $");
+__RCSID("$NetBSD: comp.c,v 1.14 2019/02/04 03:29:41 mrg Exp $");
 #endif
 #endif /* not lint */
 
@@ -52,7 +52,8 @@ calcmove(void)
        CARD            card;
        int             *value;
        PLAY            *pp, *op;
-       bool            foundend, cango, canstop, foundlow;
+       bool            foundend, canstop, foundlow;
+       int             cango;
        unsigned int    i, count200, badcount, nummin, nummax, diff;
        int             curmin, curmax;
        CARD            safe, oppos;
@@ -217,6 +218,7 @@ okay:
                                        *value = 0;
                                        break;
                                }
+                               /* FALLTHROUGH */
                          case C_75:    case C_100:
                                *value = (Value[card] >> 3);
                                if (pp->speed == C_LIMIT)
@@ -423,6 +425,7 @@ onecard(const PLAY *pp)
                                card = (End - pp->mileage == 75 ? C_75 : C_100);
                        if (spd == C_LIMIT)
                                return Numseen[S_RIGHT_WAY] == 0;
+                       /* FALLTHROUGH */
                  case 50:
                  case 25:
                        if (card == -1)