1
0
mirror of https://github.com/facebook/zstd.git synced 2025-08-01 09:47:01 +03:00

Fix up some old names

This commit is contained in:
Nick Terrell
2017-04-04 17:03:48 -07:00
parent 2e4dbd2105
commit c53bacc881

View File

@ -270,9 +270,9 @@ static int zstd_decompress_biovec(struct list_head *ws, struct page **pages_in,
while (1) { while (1) {
const size_t rc = ZSTD_decompressStream(stream, &out_buf, &in_buf); const size_t rc = ZSTD_decompressStream(stream, &out_buf, &in_buf);
if (zstd_is_error(rc)) { if (ZSTD_isError(rc)) {
pr_debug("BTRFS: ZSTD_decompressStream returned %d\n", pr_debug("BTRFS: ZSTD_decompressStream returned %d\n",
zstd_get_error_code(rc)); ZSTD_getErrorCode(rc));
ret = -EIO; ret = -EIO;
goto done; goto done;
} }