From 7f24fc96855e7e749ca4e15ffdce8ea80fc94dbf Mon Sep 17 00:00:00 2001 From: Toomas Soome Date: Tue, 20 Jun 2017 01:12:12 +0300 Subject: [PATCH] 9131 regexp.h: this statement may fall through Reviewed by: Andy Fiddaman Approved by: Gordon Ross --- usr/src/head/regexp.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr/src/head/regexp.h b/usr/src/head/regexp.h index d224c5b2c4..5c6714caf4 100644 --- a/usr/src/head/regexp.h +++ b/usr/src/head/regexp.h @@ -289,7 +289,9 @@ compile(char *instring, char *ep, const char *endbuf, int seof) *ep++ = (char)c; continue; } + /* FALLTHROUGH */ } + /* FALLTHROUGH */ /* Drop through to default to use \ to turn off special chars */ defchar: -- 2.11.4.GIT