diff options
author | Chucheng Luo <luochucheng@vivo.com> | 2020-03-14 05:13:11 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2020-05-18 12:34:32 +0200 |
commit | 15f9f63f4d74c084d32663065e36e57fdc2e47fd (patch) | |
tree | 9db6bbe6b37378561e6192e3d94b9fe776d17064 /fs/vboxsf | |
parent | err.h: remove deprecated PTR_RET for good (diff) | |
download | linux-15f9f63f4d74c084d32663065e36e57fdc2e47fd.tar.xz linux-15f9f63f4d74c084d32663065e36e57fdc2e47fd.zip |
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.c | 2 |
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)) { |