Remove an useless declaration
authorSylvestre Ledru <s@mozilla.com>
Thu, 4 Jul 2019 16:13:36 +0000 (18:13 +0200)
committerGitHub <noreply@github.com>
Thu, 4 Jul 2019 16:13:36 +0000 (18:13 +0200)
lib/lz4.c

index d121e29..38ad6ab 100644 (file)
--- 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;