From 2840631dc1a5923ee51f76792ea427e41b1a0de4 Mon Sep 17 00:00:00 2001 From: hirohira Date: Wed, 26 Feb 2025 08:23:48 +0900 Subject: [PATCH] Fix function signature mismatch for ZSTD_convertBlockSequences --- lib/compress/zstd_compress_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compress/zstd_compress_internal.h b/lib/compress/zstd_compress_internal.h index ca5e2a4c5..c6bd166b1 100644 --- a/lib/compress/zstd_compress_internal.h +++ b/lib/compress/zstd_compress_internal.h @@ -1523,7 +1523,7 @@ typedef struct { /* for benchmark */ size_t ZSTD_convertBlockSequences(ZSTD_CCtx* cctx, const ZSTD_Sequence* const inSeqs, size_t nbSequences, - int const repcodeResolution); + int repcodeResolution); typedef struct { size_t nbSequences; -- 2.47.2