1
0
mirror of https://github.com/facebook/zstd.git synced 2026-01-06 11:21:19 +03:00

[btrfs] Fix typo in pr_warn() message

This commit is contained in:
Nick Terrell
2017-05-02 13:57:40 -07:00
parent 79a85e1371
commit 99972fa9a8
2 changed files with 2 additions and 2 deletions

View File

@@ -95,7 +95,7 @@ static int zstd_compress_pages(struct list_head *ws,
stream = ZSTD_initCStream(params, len, workspace->mem,
workspace->size);
if (!stream) {
pr_warn("BTRFS: ZSTD_initStream failed\n");
pr_warn("BTRFS: ZSTD_initCStream failed\n");
ret = -EIO;
goto out;
}