From: Mark Adler Date: Fri, 14 Oct 2016 20:30:18 +0000 (-0700) Subject: Avoid obfuscating use of default case in inftrees.c. X-Git-Tag: 1.9.9-b1~735 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2289e6f1be53a91bc178b469d4faf9f741366f1;p=thirdparty%2Fzlib-ng.git Avoid obfuscating use of default case in inftrees.c. --- diff --git a/inftrees.c b/inftrees.c index 198428ec7..5bb3cc5d3 100644 --- a/inftrees.c +++ b/inftrees.c @@ -181,7 +181,7 @@ int ZLIB_INTERNAL inflate_table(codetype type, uint16_t *lens, unsigned codes, extra = lext; match = 257; break; - default: /* DISTS */ + case DISTS: base = dbase; extra = dext; match = 0;