diff mbox series

[next] btrfs: zlib: Fix spelling mistake "infalte" -> "inflate"

Message ID 20240122130102.3157773-1-colin.i.king@gmail.com (mailing list archive)
State New, archived
Headers show
Series [next] btrfs: zlib: Fix spelling mistake "infalte" -> "inflate" | expand

Commit Message

Colin Ian King Jan. 22, 2024, 1:01 p.m. UTC
There is a spelling mistake in a warning message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 fs/btrfs/zlib.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

David Sterba Jan. 29, 2024, 5:05 p.m. UTC | #1
On Mon, Jan 22, 2024 at 01:01:02PM +0000, Colin Ian King wrote:
> There is a spelling mistake in a warning message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Added to for-next, thanks.
diff mbox series

Patch

diff --git a/fs/btrfs/zlib.c b/fs/btrfs/zlib.c
index 8da66ea699e8..e5b3f2003896 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 {