From: Yann Collet Date: Tue, 10 Dec 2024 22:14:07 +0000 (-0800) Subject: fix proper type for .forceNonContiguous X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8669333d326fa0a64e688e88ef1d34e0b89c6340;p=thirdparty%2Fzstd.git fix proper type for .forceNonContiguous --- diff --git a/lib/compress/zstd_compress_internal.h b/lib/compress/zstd_compress_internal.h index 737d1cc45..21e69650f 100644 --- a/lib/compress/zstd_compress_internal.h +++ b/lib/compress/zstd_compress_internal.h @@ -301,7 +301,7 @@ struct ZSTD_matchState_t { U32* hashTable3; U32* chainTable; - U32 forceNonContiguous; /* Non-zero if we should force non-contiguous load for the next window update. */ + int forceNonContiguous; /* Non-zero if we should force non-contiguous load for the next window update. */ int dedicatedDictSearch; /* Indicates whether this matchState is using the * dedicated dictionary search structure.