From 93b546c082a8b32824a000a5be13e5aa9c84d208 Mon Sep 17 00:00:00 2001 From: Toomas Soome Date: Sun, 16 Jul 2017 22:58:53 +0300 Subject: [PATCH] 9357 vgrind: this statement may fall through Reviewed by: Jason King Reviewed by: Andy Fiddaman Approved by: Hans Rosenfeld --- usr/src/cmd/vgrind/vfontedpr.c | 3 +-- 1 file changed, 1 insertion(+), 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 #include #include @@ -792,6 +790,7 @@ putcp(int c) default: if (c < 040) putchar('^'), c |= '@'; + /* FALLTHROUGH */ case '\t': case '\n': putchar(c); -- 2.11.4.GIT