summaryrefslogtreecommitdiff
path: root/fs/vboxsf
diff options
context:
space:
mode:
authorChucheng Luo <luochucheng@vivo.com>2020-03-14 12:13:11 +0800
committerJiri Kosina <jkosina@suse.cz>2020-05-18 12:34:32 +0200
commit15f9f63f4d74c084d32663065e36e57fdc2e47fd (patch)
tree9db6bbe6b37378561e6192e3d94b9fe776d17064 /fs/vboxsf
parentfad7c9020948eab2bc4661eade4e1ef357279590 (diff)
fs: Fix missing 'bit' in comment
The missing word may make it hard for other developers to understand it. Signed-off-by: Chucheng Luo <luochucheng@vivo.com> Acked-by: Hans de Goede <hdegoede@redhat.com> Acked-by: Andreas Dilger <adilger@dilger.ca> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'fs/vboxsf')
-rw-r--r--fs/vboxsf/dir.c2
1 files changed, 1 insertions, 1 deletions
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)) {