From: codicodi Date: Mon, 14 Aug 2017 12:03:46 +0000 (+0200) Subject: fix typo in lz4 support code X-Git-Tag: v1.3.1^2~11^2~6^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F793%2Fhead;p=thirdparty%2Fzstd.git fix typo in lz4 support code --- diff --git a/programs/fileio.c b/programs/fileio.c index 1dd8008e8..e729e37ec 100644 --- a/programs/fileio.c +++ b/programs/fileio.c @@ -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;