Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 051cc2d

Browse files
committed
Make field private. It is not used outside the module and it should not be directly accessed anyway
1 parent a6796c1 commit 051cc2d

File tree

1 file changed

+1
-1
lines changed
  • src/tools/miri/src/shims/unix

1 file changed

+1
-1
lines changed

src/tools/miri/src/shims/unix/fd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ impl FileDescriptor {
213213
/// The file descriptor table
214214
#[derive(Debug)]
215215
pub struct FdTable {
216-
pub fds: BTreeMap<i32, FileDescriptor>,
216+
fds: BTreeMap<i32, FileDescriptor>,
217217
}
218218

219219
impl VisitProvenance for FdTable {

0 commit comments

Comments
 (0)