Skip to content

Commit e141b07

Browse files
committed
fix: compilation issue w/ refactored type
1 parent aa877bc commit e141b07

File tree

1 file changed

+2
-2
lines changed
  • library/std/src/sys/pal/windows

1 file changed

+2
-2
lines changed

library/std/src/sys/pal/windows/fs.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -416,8 +416,8 @@ impl File {
416416
dwHighDateTime: (info.LastWriteTime >> 32) as u32,
417417
},
418418
change_time: Some(c::FILETIME {
419-
dhLowDateTime: info.ChangeTime as c::DWORD,
420-
dhHighDateTime: (info.ChangeTime >> 32) as c::DWORD,
419+
dwLowDateTime: info.ChangeTime as u32,
420+
dwHighDateTime: (info.ChangeTime >> 32) as u32,
421421
}),
422422
file_size: 0,
423423
reparse_tag: 0,

0 commit comments

Comments
 (0)