summaryrefslogtreecommitdiffstats
path: root/programs/fullbench.c
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-06-09 15:46:03 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-06-09 15:46:03 (GMT)
commit135f11b54ea8e9c257d17514edc16d4a392a0659 (patch)
tree6c684e1483bca1d2fe7421c8ba51f57cc46f31c1 /programs/fullbench.c
parent426e7437e10719b215dc5aeb46e48bcf90ae3831 (diff)
downloadlz4-135f11b54ea8e9c257d17514edc16d4a392a0659.zip
lz4-135f11b54ea8e9c257d17514edc16d4a392a0659.tar.gz
lz4-135f11b54ea8e9c257d17514edc16d4a392a0659.tar.bz2
Obsolete "external allocation" functions
(convergence towards LZ4_compress_continue() )
Diffstat (limited to 'programs/fullbench.c')
-rwxr-xr-xprograms/fullbench.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/programs/fullbench.c b/programs/fullbench.c
index 23ca5b7..154de78 100755
--- a/programs/fullbench.c
+++ b/programs/fullbench.c
@@ -282,15 +282,15 @@ static int local_LZ4_compress_limitedOutput_continue(const char* in, char* out,
}
-LZ4_dict_t LZ4_dict;
+LZ4_stream_t LZ4_dict;
static void* local_LZ4_resetDictT(const char* fake)
{
(void)fake;
- memset(&LZ4_dict, 0, sizeof(LZ4_dict_t));
+ memset(&LZ4_dict, 0, sizeof(LZ4_stream_t));
return NULL;
}
-int LZ4_compress_forceExtDict (LZ4_dict_t* LZ4_dict, const char* source, char* dest, int inputSize);
+int LZ4_compress_forceExtDict (LZ4_stream_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_forceExtDict(&LZ4_dict, in, out, inSize);