From: Chucheng Luo Date: Sat, 14 Mar 2020 04:13:11 +0000 (+0800) Subject: fs: Fix missing 'bit' in comment X-Git-Tag: rel_imx_5.10.35_2.0.0-somdevices.0~993^2~12 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=15f9f63f4d74c084d32663065e36e57fdc2e47fd;p=linux.git fs: Fix missing 'bit' in comment The missing word may make it hard for other developers to understand it. Signed-off-by: Chucheng Luo Acked-by: Hans de Goede Acked-by: Andreas Dilger Signed-off-by: Jiri Kosina --- diff --git a/fs/vboxsf/dir.c b/fs/vboxsf/dir.c index dd147b490982..4d569f14a8d8 100644 --- a/fs/vboxsf/dir.c +++ b/fs/vboxsf/dir.c @@ -134,7 +134,7 @@ try_next_entry: d_type = vboxsf_get_d_type(info->info.attr.mode); /* - * On 32 bit systems pos is 64 signed, while ino is 32 bit + * On 32-bit systems pos is 64-bit signed, while ino is 32-bit * unsigned so fake_ino may overflow, check for this. */ if ((ino_t)(ctx->pos + 1) != (u64)(ctx->pos + 1)) {