Make field private. It is not used outside the module and it should not be directly accessed anyway
This commit is contained in:
parent
a6796c10a1
commit
051cc2d768
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ impl FileDescriptor {
|
|||
/// The file descriptor table
|
||||
#[derive(Debug)]
|
||||
pub struct FdTable {
|
||||
pub fds: BTreeMap<i32, FileDescriptor>,
|
||||
fds: BTreeMap<i32, FileDescriptor>,
|
||||
}
|
||||
|
||||
impl VisitProvenance for FdTable {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue