summaryrefslogtreecommitdiffstats
path: root/tests/fullbench.c
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2018-04-29 14:41:35 (GMT)
committerGitHub <noreply@github.com>2018-04-29 14:41:35 (GMT)
commit41ad238bf9e51f35911ced8f530818c872d20159 (patch)
treed3fea1bc3908500e3fc8ec9b8b6b50e0c8d00ed0 /tests/fullbench.c
parentaaeeb2572bfa197bf29fd804953c93cba9db57be (diff)
parentd81a434c3dc032779dba6f22a58b127922ef332f (diff)
downloadlz4-41ad238bf9e51f35911ced8f530818c872d20159.zip
lz4-41ad238bf9e51f35911ced8f530818c872d20159.tar.gz
lz4-41ad238bf9e51f35911ced8f530818c872d20159.tar.bz2
Merge pull request #515 from svpv/refactorDec
lz4.c: refactor the decoding routines
Diffstat (limited to 'tests/fullbench.c')
-rw-r--r--tests/fullbench.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fullbench.c b/tests/fullbench.c
index 22199b7..ee2966f 100644
--- a/tests/fullbench.c
+++ b/tests/fullbench.c
@@ -282,7 +282,7 @@ static int local_LZ4_decompress_safe_usingDict(const char* in, char* out, int in
}
#ifndef LZ4_DLL_IMPORT
-extern int LZ4_decompress_safe_forceExtDict(const char* in, char* out, int inSize, int outSize, const char* dict, int dictSize);
+extern int LZ4_decompress_safe_forceExtDict(const char* in, char* out, int inSize, int outSize, const void* dict, size_t dictSize);
static int local_LZ4_decompress_safe_forceExtDict(const char* in, char* out, int inSize, int outSize)
{