summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSylvestre Ledru <s@mozilla.com>2019-07-04 16:13:36 (GMT)
committerGitHub <noreply@github.com>2019-07-04 16:13:36 (GMT)
commit12e5841e762c69e9daa79d6f6d6a5f4302492479 (patch)
treea147514d3143d0ef084cc01fa57cec6946b43ae4 /lib
parent68d045e0b2401e88322f37819d3bdaea0f9849a8 (diff)
downloadlz4-12e5841e762c69e9daa79d6f6d6a5f4302492479.zip
lz4-12e5841e762c69e9daa79d6f6d6a5f4302492479.tar.gz
lz4-12e5841e762c69e9daa79d6f6d6a5f4302492479.tar.bz2
Remove an useless declaration
Diffstat (limited to 'lib')
-rw-r--r--lib/lz4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4.c b/lib/lz4.c
index d121e29..38ad6ab 100644
--- a/lib/lz4.c
+++ b/lib/lz4.c
@@ -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;