8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ba0582b + 1342ef1 commit cb8f69bCopy full SHA for cb8f69b
std/src/sys/pal/windows/fs.rs
@ 7542 @ -416,8 +416,8 @@ impl File {
416
dwHighDateTime: (info.LastWriteTime >> 32) as u32,
417
},
418
change_time: Some(c::FILETIME {
419
- dhLowDateTime: info.ChangeTime as c::DWORD,
420
- dhHighDateTime: (info.ChangeTime >> 32) as c::DWORD,
+ dwLowDateTime: info.ChangeTime as u32,
+ dwHighDateTime: (info.ChangeTime >> 32) as u32,
421
}),
422
file_size: 0,
423
reparse_tag: 0,
0 commit comments