diff options
| author | Toomas Soome <tsoome@me.com> | 2017-07-16 22:58:53 +0300 |
|---|---|---|
| committer | Hans Rosenfeld <hans.rosenfeld@joyent.com> | 2018-04-23 18:15:39 +0200 |
| commit | 93b546c082a8b32824a000a5be13e5aa9c84d208 (patch) | |
| tree | f2de8ea56f0d0b5d650944b80db7fc82fe815a14 | |
| parent | 29a5d00515db6837124bcba467ff498b273b21aa (diff) | |
| download | illumos-joyent-93b546c082a8b32824a000a5be13e5aa9c84d208.tar.gz | |
9357 vgrind: this statement may fall through
Reviewed by: Jason King <jason.brian.king@gmail.com>
Reviewed by: Andy Fiddaman <omnios@citrus-it.co.uk>
Approved by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
| -rw-r--r-- | usr/src/cmd/vgrind/vfontedpr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr/src/cmd/vgrind/vfontedpr.c b/usr/src/cmd/vgrind/vfontedpr.c index 3a69a61deb..ec9fa29194 100644 --- a/usr/src/cmd/vgrind/vfontedpr.c +++ b/usr/src/cmd/vgrind/vfontedpr.c @@ -4,8 +4,6 @@ * specifies the terms and conditions for redistribution. */ -#pragma ident "%Z%%M% %I% %E% SMI" - #include <ctype.h> #include <stdio.h> #include <sys/types.h> @@ -792,6 +790,7 @@ putcp(int c) default: if (c < 040) putchar('^'), c |= '@'; + /* FALLTHROUGH */ case '\t': case '\n': putchar(c); |
