summaryrefslogtreecommitdiffstats
path: root/programs/fullbench.c
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-06-02 06:07:19 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-06-02 06:07:19 (GMT)
commitb636779b0e168c346b42e85af816ce37a8ed9880 (patch)
tree03c4d8882c25162102c6df6e46b238a5864ed77b /programs/fullbench.c
parent302e7e2f2bddc4a9d1ff108c0d9a5079a11b6ed0 (diff)
downloadlz4-b636779b0e168c346b42e85af816ce37a8ed9880.zip
lz4-b636779b0e168c346b42e85af816ce37a8ed9880.tar.gz
lz4-b636779b0e168c346b42e85af816ce37a8ed9880.tar.bz2
unified structure model
Diffstat (limited to 'programs/fullbench.c')
-rwxr-xr-xprograms/fullbench.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/programs/fullbench.c b/programs/fullbench.c
index ef42c80..ae33330 100755
--- a/programs/fullbench.c
+++ b/programs/fullbench.c
@@ -300,10 +300,10 @@ static int local_LZ4_compress_limitedOutput_usingDict(const char* in, char* out,
return LZ4_compress_limitedOutput_usingDict(&LZ4_dict, in, out, inSize, LZ4_compressBound(inSize));
}
-int LZ4_compress_forceDict (LZ4_dict_t* LZ4_dict, const char* source, char* dest, int inputSize);
+int LZ4_compress_forceExtDict (LZ4_dict_t* LZ4_dict, const char* source, char* dest, int inputSize);
static int local_LZ4_compress_forceDict(const char* in, char* out, int inSize)
{
- return LZ4_compress_forceDict(&LZ4_dict, in, out, inSize);
+ return LZ4_compress_forceExtDict(&LZ4_dict, in, out, inSize);
}