From: Yann Collet Date: Tue, 10 Dec 2024 22:14:07 +0000 (-0800) Subject: fix proper type for .forceNonContiguous X-Git-Tag: v1.5.7^2~48^2~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03d95f9d135a9009b15567acf6f85b6e23534224;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.