diff options
author | Toomas Soome <tsoome@me.com> | 2017-07-16 16:50:06 +0300 |
---|---|---|
committer | Dan McDonald <danmcd@joyent.com> | 2018-04-06 15:43:10 -0400 |
commit | db0449058042a16790d8282ecffb1a0beedaf0ea (patch) | |
tree | 16f392d01133c317592624bbcf4437374b40c558 /usr/src/common/bzip2/decompress.c | |
parent | 3a05eee78b080a8a26d90f39b9efb85c9db8b5e8 (diff) | |
download | illumos-gate-db0449058042a16790d8282ecffb1a0beedaf0ea.tar.gz |
9363 savecore: this statement may fall through
Reviewed by: Yuri Pankov <yuripv@yuripv.net>
Reviewed by: Andy Fiddaman <omnios@citrus-it.co.uk>
Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src/common/bzip2/decompress.c')
-rw-r--r-- | usr/src/common/bzip2/decompress.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr/src/common/bzip2/decompress.c b/usr/src/common/bzip2/decompress.c index dd7eead372..d1da427b26 100644 --- a/usr/src/common/bzip2/decompress.c +++ b/usr/src/common/bzip2/decompress.c @@ -41,6 +41,7 @@ void makeMaps_d ( DState* s ) { retVal = rrr; goto save_state_and_return; } #define GET_BITS(lll,vvv,nnn) \ + /* FALLTHROUGH */ \ case lll: s->state = lll; \ while (True) { \ if (s->bsLive >= nnn) { \ |