From d52ef498cf999d411fb7261753219aa1463bc7c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Mon, 25 Jun 2018 15:06:31 +0200 Subject: [PATCH] phc2sys: document switch/case fallthrough so that gcc can understand it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rafaël Carré --- phc2sys.c | 1 + 1 file changed, 1 insertion(+) diff --git a/phc2sys.c b/phc2sys.c index 3f2a0f8..66e34d6 100644 --- a/phc2sys.c +++ b/phc2sys.c @@ -1428,6 +1428,7 @@ int main(int argc, char *argv[]) case 'i': fprintf(stderr, "'-i' has been deprecated. please use '-s' instead.\n"); + /* fallthrough */ case 's': src_name = strdup(optarg); break;