summaryrefslogtreecommitdiffstats
path: root/tests/fullbench.c
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2018-04-28 00:22:06 (GMT)
committerGitHub <noreply@github.com>2018-04-28 00:22:06 (GMT)
commit9d4eae59f05270f12fc0c62851424e186ef4ef6e (patch)
tree3ffc05b86717e06cb23e2e30ec4beb86148c1a4d /tests/fullbench.c
parent1e6ca25af3a0906f4b2cd8fd8f9e732bc7ee0eac (diff)
parentd81a434c3dc032779dba6f22a58b127922ef332f (diff)
downloadlz4-9d4eae59f05270f12fc0c62851424e186ef4ef6e.zip
lz4-9d4eae59f05270f12fc0c62851424e186ef4ef6e.tar.gz
lz4-9d4eae59f05270f12fc0c62851424e186ef4ef6e.tar.bz2
Merge pull request #522 from svpv/refactorDec
Refactor dec
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)
{