diff options
| author | Yann Collet <Cyan4973@users.noreply.github.com> | 2018-04-27 17:22:06 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-27 17:22:06 -0700 |
| commit | 9d4eae59f05270f12fc0c62851424e186ef4ef6e (patch) | |
| tree | 3ffc05b86717e06cb23e2e30ec4beb86148c1a4d /tests/fullbench.c | |
| parent | 1e6ca25af3a0906f4b2cd8fd8f9e732bc7ee0eac (diff) | |
| parent | d81a434c3dc032779dba6f22a58b127922ef332f (diff) | |
| download | platform_external_lz4-9d4eae59f05270f12fc0c62851424e186ef4ef6e.tar.gz platform_external_lz4-9d4eae59f05270f12fc0c62851424e186ef4ef6e.tar.bz2 platform_external_lz4-9d4eae59f05270f12fc0c62851424e186ef4ef6e.zip | |
Merge pull request #522 from svpv/refactorDec
Refactor dec
Diffstat (limited to 'tests/fullbench.c')
| -rw-r--r-- | tests/fullbench.c | 2 |
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) { |
