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:
@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user