Skip to content

Commit

Permalink
fs: Fix missing 'bit' in comment
Browse files Browse the repository at this point in the history
The missing word may make it hard for other developers to
understand it.

Signed-off-by: Chucheng Luo <[email protected]>
Acked-by: Hans de Goede <[email protected]>
Acked-by: Andreas Dilger <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
  • Loading branch information
Chucheng Luo authored and Jiri Kosina committed May 18, 2020
1 parent fad7c90 commit 15f9f63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/vboxsf/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ static bool vboxsf_dir_emit(struct file *dir, struct dir_context *ctx)
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)) {
Expand Down

0 comments on commit 15f9f63

Please sign in to comment.