Skip to content
Closed
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
4 changes: 2 additions & 2 deletions compio-driver/src/sys/pal/unix/stat/linux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pub const fn statx_to_stat(statx: Statx) -> Stat {
stat.st_atime_nsec = statx.stx_atime.tv_nsec as _;
stat.st_mtime = statx.stx_mtime.tv_sec as _;
stat.st_mtime_nsec = statx.stx_mtime.tv_nsec as _;
stat.st_ctime = statx.stx_btime.tv_sec as _;
stat.st_ctime_nsec = statx.stx_btime.tv_nsec as _;
stat.st_ctime = statx.stx_ctime.tv_sec as _;
stat.st_ctime_nsec = statx.stx_ctime.tv_nsec as _;
stat
}
Loading