We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa877bc commit e141b07Copy full SHA for e141b07
library/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