diff options
author | Timofey Titovets <nefelim4ag@gmail.com> | 2017-05-25 21:12:19 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2017-06-19 18:26:01 +0200 |
commit | 036b0217ade892066dcab6afc5de22b6791ef0ef (patch) | |
tree | ed629811901f77d0d51cf9ba5068917e599efed4 /fs/btrfs/lzo.c | |
parent | 3189ff778630d9ce8a9f2fda9f8ae4510cceb154 (diff) | |
download | linux-036b0217ade892066dcab6afc5de22b6791ef0ef.tar.gz linux-036b0217ade892066dcab6afc5de22b6791ef0ef.tar.bz2 linux-036b0217ade892066dcab6afc5de22b6791ef0ef.zip |
Btrfs: lzo: fix typo in error message after failed deflate
Fix copy paste typo in debug message for lzo.c, lzo is not deflate.
Signed-off-by: Timofey Titovets <nefelim4ag@gmail.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/lzo.c')
-rw-r--r-- | fs/btrfs/lzo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/lzo.c b/fs/btrfs/lzo.c index 5995563ca56f..a554856a5f8a 100644 --- a/fs/btrfs/lzo.c +++ b/fs/btrfs/lzo.c @@ -142,7 +142,7 @@ static int lzo_compress_pages(struct list_head *ws, ret = lzo1x_1_compress(data_in, in_len, workspace->cbuf, &out_len, workspace->mem); if (ret != LZO_E_OK) { - pr_debug("BTRFS: deflate in loop returned %d\n", + pr_debug("BTRFS: lzo in loop returned %d\n", ret); ret = -EIO; goto out; |