Skip to content

Commit

Permalink
fix: compilation issue w/ refactored type
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusl committed Jul 25, 2024
1 parent ef4d4a0 commit 1342ef1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions std/src/sys/pal/windows/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,8 @@ impl File {
dwHighDateTime: (info.LastWriteTime >> 32) as u32,
},
change_time: Some(c::FILETIME {
dhLowDateTime: info.ChangeTime as c::DWORD,
dhHighDateTime: (info.ChangeTime >> 32) as c::DWORD,
dwLowDateTime: info.ChangeTime as u32,
dwHighDateTime: (info.ChangeTime >> 32) as u32,
}),
file_size: 0,
reparse_tag: 0,
Expand Down

0 comments on commit 1342ef1

Please sign in to comment.