Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/unix/bsd/apple/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ s! {
}

pub struct dirent {
pub d_ino: u64,
pub d_ino: ino_t,
pub d_seekoff: u64,
pub d_reclen: u16,
pub d_namlen: u16,
Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/dragonfly/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ s! {
}

pub struct dirent {
pub d_fileno: ::ino_t,
pub d_ino: ::ino_t,
pub d_namlen: u16,
pub d_type: u8,
__unused1: u8,
Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/freebsd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ s! {
}

pub struct dirent {
pub d_fileno: u32,
pub d_ino: ::ino_t,
pub d_reclen: u16,
pub d_type: u8,
pub d_namlen: u8,
Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/netbsdlike/netbsd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ s! {
}

pub struct dirent {
pub d_fileno: ::ino_t,
pub d_ino: ::ino_t,
pub d_reclen: u16,
pub d_namlen: u16,
pub d_type: u8,
Expand Down