diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2022-03-27 00:12:38 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2022-03-27 01:54:10 -0700 |
commit | 76f70abbc73f8887ed42b12cf5c895b386595d59 (patch) | |
tree | 9081af11a6e9b39261632efab3ce43f545bc2f24 /infback.c | |
parent | 2014a993addbc8f1b9785d97f55fd189792c2f78 (diff) | |
download | zlib-76f70abbc73f8887ed42b12cf5c895b386595d59.tar.gz zlib-76f70abbc73f8887ed42b12cf5c895b386595d59.tar.bz2 zlib-76f70abbc73f8887ed42b12cf5c895b386595d59.zip |
Add fallthrough comments for gcc.
Note intentional switch case fall throughs to avoid gcc warnings.
Diffstat (limited to 'infback.c')
-rw-r--r-- | infback.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -477,6 +477,7 @@ void FAR *out_desc; | |||
477 | } | 477 | } |
478 | Tracev((stderr, "inflate: codes ok\n")); | 478 | Tracev((stderr, "inflate: codes ok\n")); |
479 | state->mode = LEN; | 479 | state->mode = LEN; |
480 | /* fallthrough */ | ||
480 | 481 | ||
481 | case LEN: | 482 | case LEN: |
482 | /* use inflate_fast() if we have enough input and output */ | 483 | /* use inflate_fast() if we have enough input and output */ |