Merge pull request #793 from codicodi/fix-lz4-support

fix typo in lz4 support code
This commit is contained in:
Yann Collet
2017-08-14 09:54:00 -07:00
committed by GitHub
+1 -1
View File
@@ -1616,7 +1616,7 @@ static unsigned long long FIO_decompressLz4Frame(dRess_t* ress,
/* Write Block */
if (decodedBytes) {
if (fwrite(ress->dstBuffer, 1, decodedBytes, ress->dstFile) != decodedBytes) {
DISPLAYLEVEL(1, "zstd: %s \n", strerr(errno));
DISPLAYLEVEL(1, "zstd: %s \n", strerror(errno));
decodingError = 1; break;
}
filesize += decodedBytes;