Rollup merge of #128211 - juliusl:pr/align-change-time, r=tgross35
fix: compilation issue w/ refactored type Fixes a compilation issue related to #121478
This commit is contained in:
commit
d87fa5e788
1 changed files with 2 additions and 2 deletions
|
@ -416,8 +416,8 @@ impl File {
|
|||
dwHighDateTime: (info.LastWriteTime >> 32) as u32,
|
||||
},
|
||||
change_time: Some(c::FILETIME {
|
||||
dhLowDateTime: info.ChangeTime as c::DWORD,
|
||||
dhHighDateTime: (info.ChangeTime >> 32) as c::DWORD,
|
||||
dwLowDateTime: info.ChangeTime as u32,
|
||||
dwHighDateTime: (info.ChangeTime >> 32) as u32,
|
||||
}),
|
||||
file_size: 0,
|
||||
reparse_tag: 0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue