[PATCH] ntfs: Fix spelling mistake "etnry" -> "entry"

Colin Ian King posted 1 patch 1 week, 5 days ago
fs/ntfs/index.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] ntfs: Fix spelling mistake "etnry" -> "entry"
Posted by Colin Ian King 1 week, 5 days ago
There is a spelling mistake in a ntfs_error message. Fix it.

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

diff --git a/fs/ntfs/index.c b/fs/ntfs/index.c
index 00e17637f771..8371ff4303e7 100644
--- a/fs/ntfs/index.c
+++ b/fs/ntfs/index.c
@@ -340,7 +340,7 @@ int ntfs_index_entries_inconsistent(const struct ntfs_volume *vol,
 
 		if (le16_to_cpu(ie->length) < sizeof(struct index_entry_header)) {
 			ntfs_error(vol->sb,
-				   "Index etnry too small in inode %llu.",
+				   "Index entry too small in inode %llu.",
 				   inum);
 			return -EIO;
 		}
-- 
2.53.0
Re: [PATCH] ntfs: Fix spelling mistake "etnry" -> "entry"
Posted by Namjae Jeon 1 week, 5 days ago
On Wed, May 27, 2026 at 4:51 PM Colin Ian King <colin.i.king@gmail.com> wrote:
>
> There is a spelling mistake in a ntfs_error message. Fix it.
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Applied it to #ntfs-next.
Thanks!