summaryrefslogtreecommitdiff
path: root/zlib/inflate.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2019-01-04 15:06:30 -0800
committerWayne Davison <wayned@samba.org>2019-01-04 15:06:30 -0800
commitad17b2188958dabe2f957cde1357ae70f75d3bbd (patch)
tree1e8dbb90c34368b263d9f0a189f8988864fdc759 /zlib/inflate.c
parenta3668685354e7457ac3e29634083906ee5435bf2 (diff)
downloadrsync-ad17b2188958dabe2f957cde1357ae70f75d3bbd.tar.gz
Silence fall-through warnings.
Diffstat (limited to 'zlib/inflate.c')
-rw-r--r--zlib/inflate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/zlib/inflate.c b/zlib/inflate.c
index cea8e7e4..5ed2390d 100644
--- a/zlib/inflate.c
+++ b/zlib/inflate.c
@@ -885,9 +885,10 @@ int flush;
INITBITS();
state->mode = COPY_;
if (flush == Z_TREES) goto inf_leave;
+ /* FALLTHROUGH */
case COPY_:
state->mode = COPY;
- /* FALL THROUGH */
+ /* FALLTHROUGH */
case COPY:
copy = state->length;
if (copy) {