From: shakeelrao Date: Thu, 28 Feb 2019 10:10:17 +0000 (-0800) Subject: switch frameBound type to ULL X-Git-Tag: v1.4.0^2~30^2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=515c506b4c7dabb83ea8e4b2edfa709cdf647279;p=thirdparty%2Fzstd.git switch frameBound type to ULL --- diff --git a/lib/decompress/zstd_decompress.c b/lib/decompress/zstd_decompress.c index 6d56b08c8..d2916d7ef 100644 --- a/lib/decompress/zstd_decompress.c +++ b/lib/decompress/zstd_decompress.c @@ -529,7 +529,7 @@ unsigned long long ZSTD_decompressBound(const void* src, size_t srcSize) } { size_t bound; - size_t frameBound; + unsigned long long frameBound; size_t frameSrcSize; unsigned long long const ret = ZSTD_getFrameContentSize(src, srcSize); if (ret == ZSTD_CONTENTSIZE_ERROR) return ret;