mirror of
https://github.com/facebook/zstd.git
synced 2025-10-09 00:05:28 -04:00
fix typo in lz4 support code
This commit is contained in:
parent
cae4024889
commit
0fb7b23fcc
@ -1616,7 +1616,7 @@ static unsigned long long FIO_decompressLz4Frame(dRess_t* ress,
|
|||||||
/* Write Block */
|
/* Write Block */
|
||||||
if (decodedBytes) {
|
if (decodedBytes) {
|
||||||
if (fwrite(ress->dstBuffer, 1, decodedBytes, ress->dstFile) != 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;
|
decodingError = 1; break;
|
||||||
}
|
}
|
||||||
filesize += decodedBytes;
|
filesize += decodedBytes;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user