diff options
author | Toomas Soome <tsoome@me.com> | 2017-07-10 23:16:38 +0300 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2018-02-22 15:59:53 +0000 |
commit | cf421650297f304644a9fe84c51540de5823fe84 (patch) | |
tree | 29a1dda223179ab288fe295d3010936a694fde10 /usr/src/lib/libtecla/common/expand.c | |
parent | 38a641c5970af3d16902370fb738a6792620e1bf (diff) | |
download | illumos-gate-cf421650297f304644a9fe84c51540de5823fe84.tar.gz |
9160 libtecla: this statement may fall through
Reviewed by: C Fraire <cfraire@me.com>
Reviewed by: Andy Fiddaman <omnios@citrus-it.co.uk>
Approved by: Richard Lowe <richlowe@richlowe.net>
Diffstat (limited to 'usr/src/lib/libtecla/common/expand.c')
-rw-r--r-- | usr/src/lib/libtecla/common/expand.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr/src/lib/libtecla/common/expand.c b/usr/src/lib/libtecla/common/expand.c index db00c7bfff..67991270d0 100644 --- a/usr/src/lib/libtecla/common/expand.c +++ b/usr/src/lib/libtecla/common/expand.c @@ -29,8 +29,6 @@ * of the copyright holder. */ -#pragma ident "%Z%%M% %I% %E% SMI" - /* * If file-system access is to be excluded, this module has no function, * so all of its code should be excluded. @@ -887,6 +885,7 @@ static int ef_string_matches_pattern(const char *file, const char *pattern, /* * A normal character to be matched explicitly. */ + /* FALLTHROUGH */ default: if(*fptr == *pptr) { fptr++; |