summaryrefslogtreecommitdiffstats
path: root/programs
diff options
context:
space:
mode:
authorhobomind <ak160226@yandex.ru>2018-02-14 15:47:56 (GMT)
committerGitHub <noreply@github.com>2018-02-14 15:47:56 (GMT)
commitb202c672344e9676ebcadeee8506f767795611be (patch)
treef174137e9472d08a6d9c02ee1b68d7a125780938 /programs
parent3d3d5af4e13baab469cec4119c926e52cc3e497d (diff)
downloadlz4-b202c672344e9676ebcadeee8506f767795611be.zip
lz4-b202c672344e9676ebcadeee8506f767795611be.tar.gz
lz4-b202c672344e9676ebcadeee8506f767795611be.tar.bz2
fix: missed semicolon at programs/lz4io.c:954
Diffstat (limited to 'programs')
-rw-r--r--programs/lz4io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/lz4io.c b/programs/lz4io.c
index 927928a..c712fe1 100644
--- a/programs/lz4io.c
+++ b/programs/lz4io.c
@@ -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;