diff options
author | Toomas Soome <tsoome@me.com> | 2017-07-16 11:39:58 +0300 |
---|---|---|
committer | Hans Rosenfeld <hans.rosenfeld@joyent.com> | 2018-04-23 18:15:40 +0200 |
commit | 3d19b30e50b972b09ded7f37b8a5fc36d10588e6 (patch) | |
tree | 9cb7714ddf96d7c7831a21741aeb8948efe6ac93 | |
parent | 0bd000e03b3b546461db68c0b601a3a5412e3d31 (diff) | |
download | illumos-joyent-3d19b30e50b972b09ded7f37b8a5fc36d10588e6.tar.gz |
9379 pr: this statement may fall through
Reviewed by: Andy Fiddaman <omnios@citrus-it.co.uk>
Reviewed by: Andrew Stormont <andyjstormont@gmail.com>
Approved by: Dan McDonald <danmcd@joyent.com>
-rw-r--r-- | usr/src/cmd/pr/pr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr/src/cmd/pr/pr.c b/usr/src/cmd/pr/pr.c index 467245e986..c16620edb8 100644 --- a/usr/src/cmd/pr/pr.c +++ b/usr/src/cmd/pr/pr.c @@ -39,8 +39,6 @@ * contributors. */ -#pragma ident "%Z%%M% %I% %E% SMI" - /* * PR command (print files in pages and columns, with headings) * 2+head+2+page[56]+5 @@ -1054,6 +1052,7 @@ readbuf(wchar_t **s, int lincol, COLP p) move = (move < width-chars) ? move : width-chars; chars += move; + /* FALLTHROUGH */ default: if (isascii(**s)) { |