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.
1 parent ef4d4a0 commit 1342ef1Copy full SHA for 1342ef1
std/src/sys/pal/windows/fs.rs
@@ -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