Skip to content

Commit 8abe9cc

Browse files
authored
Unrolled build for rust-lang#128211
Rollup merge of rust-lang#128211 - juliusl:pr/align-change-time, r=tgross35 fix: compilation issue w/ refactored type Fixes a compilation issue related to rust-lang#121478
2 parents 2f26b2a + e141b07 commit 8abe9cc

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)