From: Colin Ian King Date: Fri, 30 Dec 2022 23:14:52 +0000 (+0000) Subject: udf: Fix spelling mistake "lenght" -> "length" X-Git-Tag: v6.6.7~3540^2~50 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=02113feaf62c190b4216ea0a1a2b8d9ccdbcdf6f;hp=96b87cbdeb50e47c25eae1e8b209857e6acf34ea;p=platform%2Fkernel%2Flinux-starfive.git udf: Fix spelling mistake "lenght" -> "length" There is a spelling mistake in a udf_err message. Fix it. Signed-off-by: Colin Ian King Signed-off-by: Jan Kara Message-Id: <20221230231452.5821-1-colin.i.king@gmail.com> --- diff --git a/fs/udf/directory.c b/fs/udf/directory.c index a4c9190..18a1514 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; }