From: Colin Ian King Date: Mon, 22 Jan 2024 13:01:02 +0000 (+0000) Subject: btrfs: zlib: Fix spelling mistake "infalte" -> "inflate" X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=835cd82649aa5d33045fbf6b393bddc3812e9a10;p=linux.git btrfs: zlib: Fix spelling mistake "infalte" -> "inflate" There is a spelling mistake in a warning message. Fix it. Signed-off-by: Colin Ian King Reviewed-by: David Sterba Signed-off-by: David Sterba --- diff --git a/fs/btrfs/zlib.c b/fs/btrfs/zlib.c index 8da66ea699e8f..e5b3f20038962 100644 --- a/fs/btrfs/zlib.c +++ b/fs/btrfs/zlib.c @@ -398,7 +398,7 @@ int zlib_decompress(struct list_head *ws, const u8 *data_in, out: if (unlikely(to_copy != destlen)) { - pr_warn_ratelimited("BTRFS: infalte failed, decompressed=%lu expected=%zu\n", + pr_warn_ratelimited("BTRFS: inflate failed, decompressed=%lu expected=%zu\n", to_copy, destlen); ret = -EIO; } else {