diff options
author | Yann Collet <Cyan4973@users.noreply.github.com> | 2019-07-04 20:03:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-04 20:03:08 (GMT) |
commit | eb6b599a50db0c144f4f8f5cd2d7e8e480c31d4e (patch) | |
tree | a147514d3143d0ef084cc01fa57cec6946b43ae4 | |
parent | 68d045e0b2401e88322f37819d3bdaea0f9849a8 (diff) | |
parent | 12e5841e762c69e9daa79d6f6d6a5f4302492479 (diff) | |
download | lz4-eb6b599a50db0c144f4f8f5cd2d7e8e480c31d4e.zip lz4-eb6b599a50db0c144f4f8f5cd2d7e8e480c31d4e.tar.gz lz4-eb6b599a50db0c144f4f8f5cd2d7e8e480c31d4e.tar.bz2 |
Merge pull request #749 from sylvestre/patch-1
Remove an useless declaration
-rw-r--r-- | lib/lz4.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1149,7 +1149,7 @@ int LZ4_compress_fast_extState(void* state, const char* source, char* dest, int return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration); } } else { - if (inputSize < LZ4_64Klimit) {; + if (inputSize < LZ4_64Klimit) { return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration); } else { const tableType_t tableType = ((sizeof(void*)==4) && ((uptrval)source > LZ4_DISTANCE_MAX)) ? byPtr : byU32; |