Module Name:    src
Committed By:   christos
Date:           Mon Feb 18 19:35:44 UTC 2019

Modified Files:
        src/games/backgammon/common_source: check.c

Log Message:
add fallthrough


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/games/backgammon/common_source/check.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/backgammon/common_source/check.c
diff -u src/games/backgammon/common_source/check.c:1.8 src/games/backgammon/common_source/check.c:1.9
--- src/games/backgammon/common_source/check.c:1.8	Sat Oct 13 15:19:39 2012
+++ src/games/backgammon/common_source/check.c	Mon Feb 18 14:35:44 2019
@@ -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)

Reply via email to