From: Yann Collet Date: Wed, 21 Nov 2018 00:09:33 +0000 (-0800) Subject: fixed fall-through X-Git-Tag: v1.3.8~33^2~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d3592398d90aace186932fb0627bd53a52d1a55;p=thirdparty%2Fzstd.git fixed fall-through --- diff --git a/lib/compress/zstd_compress.c b/lib/compress/zstd_compress.c index ce65cef25..566b8927b 100644 --- a/lib/compress/zstd_compress.c +++ b/lib/compress/zstd_compress.c @@ -303,6 +303,7 @@ ZSTD_bounds ZSTD_cParam_getBounds(ZSTD_cParameter param) #else bounds.upperBound = 0; #endif + return bounds; case ZSTD_p_overlapSizeLog: bounds.lowerBound = ZSTD_OVERLAPLOG_MIN;