diff options
| author | christos <christos@NetBSD.org> | 2019-02-18 19:35:44 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2019-02-18 19:35:44 +0000 |
| commit | e4b44b1b980889b9af25e6fad836087af6a91c9e (patch) | |
| tree | 6c2701f21fe5d54470f46043ddcb78742b2e24e4 /games | |
| parent | 0410ca7cf9d362166229fc58a23ce2432e2164d4 (diff) | |
add fallthrough
Diffstat (limited to 'games')
| -rw-r--r-- | games/backgammon/common_source/check.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/games/backgammon/common_source/check.c b/games/backgammon/common_source/check.c index c3f8525178a..eabbc44e536 100644 --- a/games/backgammon/common_source/check.c +++ b/games/backgammon/common_source/check.c @@ -1,4 +1,4 @@ -/* $NetBSD: check.c,v 1.8 2012/10/13 19:19:39 dholland Exp $ */ +/* $NetBSD: check.c,v 1.9 2019/02/18 19:35:44 christos Exp $ */ /* * Copyright (c) 1980, 1993 @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)check.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: check.c,v 1.8 2012/10/13 19:19:39 dholland Exp $"); +__RCSID("$NetBSD: check.c,v 1.9 2019/02/18 19:35:44 christos Exp $"); #endif #endif /* not lint */ @@ -66,6 +66,7 @@ getmove(struct move *mm) bflag = pnum; return; } + /*FALLTHROUGH*/ case -4: case 0: if (tflag) |
