summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2022-12-31 02:14:52 +0300
committerJan Kara <jack@suse.cz>2023-01-09 12:39:53 +0300
commit02113feaf62c190b4216ea0a1a2b8d9ccdbcdf6f (patch)
tree5656760fd795fcd2b6adf5b5c4a85fd17395280c
parent96b87cbdeb50e47c25eae1e8b209857e6acf34ea (diff)
downloadlinux-02113feaf62c190b4216ea0a1a2b8d9ccdbcdf6f.tar.xz
udf: Fix spelling mistake "lenght" -> "length"
There is a spelling mistake in a udf_err message. Fix it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Jan Kara <jack@suse.cz> Message-Id: <20221230231452.5821-1-colin.i.king@gmail.com>
-rw-r--r--fs/udf/directory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/udf/directory.c b/fs/udf/directory.c
index a4c91905b033..18a1514871fe 100644
--- a/fs/udf/directory.c
+++ b/fs/udf/directory.c
@@ -34,7 +34,7 @@ static int udf_verify_fi(struct udf_fileident_iter *iter)
len = udf_dir_entry_len(&iter->fi);
if (le16_to_cpu(iter->fi.lengthOfImpUse) & 3) {
udf_err(iter->dir->i_sb,
- "directory (ino %lu) has entry at pos %llu with unaligned lenght of impUse field\n",
+ "directory (ino %lu) has entry at pos %llu with unaligned length of impUse field\n",
iter->dir->i_ino, (unsigned long long)iter->pos);
return -EFSCORRUPTED;
}