fix: missed semicolon at programs/lz4io.c:954
authorhobomind <ak160226@yandex.ru>
Wed, 14 Feb 2018 15:47:56 +0000 (18:47 +0300)
committerGitHub <noreply@github.com>
Wed, 14 Feb 2018 15:47:56 +0000 (18:47 +0300)
programs/lz4io.c

index 927928a..c712fe1 100644 (file)
@@ -951,7 +951,7 @@ static unsigned long long LZ4IO_passThrough(FILE* finput, FILE* foutput, unsigne
         total += readBytes;
         storedSkips = LZ4IO_fwriteSparse(foutput, buffer, readBytes, storedSkips);
     }
-    if (ferror(finput)) EXM_THROW(51, "Read Error")
+    if (ferror(finput)) EXM_THROW(51, "Read Error");
 
     LZ4IO_fwriteSparseEnd(foutput, storedSkips);
     return total;