diff options
author | W. Felix Handte <w@felixhandte.com> | 2018-04-11 19:13:01 (GMT) |
---|---|---|
committer | W. Felix Handte <w@felixhandte.com> | 2018-04-11 19:13:01 (GMT) |
commit | 21f0c9700b28301bdc8b49fcbe4ccdddf4cf5dea (patch) | |
tree | 99c98ebc76e417cacf4f3b0da4a52e35b2679b37 /lib/lz4frame.c | |
parent | c18bff933b18106ea000868ce13f37f0589cb58e (diff) | |
download | lz4-21f0c9700b28301bdc8b49fcbe4ccdddf4cf5dea.zip lz4-21f0c9700b28301bdc8b49fcbe4ccdddf4cf5dea.tar.gz lz4-21f0c9700b28301bdc8b49fcbe4ccdddf4cf5dea.tar.bz2 |
Rename _extState_noReset -> _extState_fastReset and Edit Comments
Diffstat (limited to 'lib/lz4frame.c')
-rw-r--r-- | lib/lz4frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4frame.c b/lib/lz4frame.c index afa5af3..5e11ba2 100644 --- a/lib/lz4frame.c +++ b/lib/lz4frame.c @@ -714,7 +714,7 @@ static int LZ4F_compressBlock(void* ctx, const char* src, char* dst, int srcSize if (cdict) { return LZ4_compress_fast_continue((LZ4_stream_t*)ctx, src, dst, srcSize, dstCapacity, acceleration); } else { - return LZ4_compress_fast_extState_noReset(ctx, src, dst, srcSize, dstCapacity, acceleration); + return LZ4_compress_fast_extState_fastReset(ctx, src, dst, srcSize, dstCapacity, acceleration); } } |