diff --git a/src/helpers.rs b/src/helpers.rs index 3651db982b..eb9d8e8e68 100644 --- a/src/helpers.rs +++ b/src/helpers.rs @@ -225,7 +225,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriInterpCxExt<'mir, 'tcx> { bug!("No field named {} in type {}", name, base.layout().ty); } - /// Search if Project (which must be a struct or union type) contains the `name` field. + /// Search if `base` (which must be a struct or union type) contains the `name` field. fn projectable_has_field>( &self, base: &P, diff --git a/src/shims/unix/fs.rs b/src/shims/unix/fs.rs index b2170c8c87..5b93db19d5 100644 --- a/src/shims/unix/fs.rs +++ b/src/shims/unix/fs.rs @@ -1466,8 +1466,8 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriInterpCxExt<'mir, 'tcx> { ], &entry_place, )?; - // freebsd 12 and onwards had added the d_off field } else if this.projectable_has_field(&entry_place, "d_off") { + // freebsd 12 and onwards had added the d_off field this.write_int_fields_named( &[ ("d_fileno", ino.into()),