From b1ed8d449b26da0d4179acd3ebea3e4b021477cd Mon Sep 17 00:00:00 2001 From: mrg Date: Mon, 4 Feb 2019 03:29:41 +0000 Subject: - 'cango' is used beyond a bool type. make it an int. - add a couple of fallthru comments. --- mille/comp.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'mille') diff --git a/mille/comp.c b/mille/comp.c index 83f8aa3a..2b59bbd7 100644 --- a/mille/comp.c +++ b/mille/comp.c @@ -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) -- cgit v1.2.3-56-ge451