From dc6514954049bf3d7c993996025a81414423c89b Mon Sep 17 00:00:00 2001 From: mrg Date: Sun, 3 Feb 2019 03:19:25 +0000 Subject: - add or adjust /* FALLTHROUGH */ where appropriate - add __unreachable() after functions that can return but won't in this case, and thus can't be marked __dead easily --- sail/pl_5.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sail') diff --git a/sail/pl_5.c b/sail/pl_5.c index d149b933..240ac0b9 100644 --- a/sail/pl_5.c +++ b/sail/pl_5.c @@ -1,4 +1,4 @@ -/* $NetBSD: pl_5.c,v 1.25 2009/03/15 03:33:56 dholland Exp $ */ +/* $NetBSD: pl_5.c,v 1.26 2019/02/03 03:19:25 mrg Exp $ */ /* * Copyright (c) 1983, 1993 @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)pl_5.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: pl_5.c,v 1.25 2009/03/15 03:33:56 dholland Exp $"); +__RCSID("$NetBSD: pl_5.c,v 1.26 2019/02/03 03:19:25 mrg Exp $"); #endif #endif /* not lint */ @@ -78,6 +78,7 @@ acceptmove(void) switch (*p) { case 'l': dir -= 2; + /* FALLTHROUGH */ case 'r': if (++dir == 0) dir = 8; -- cgit v1.2.3