1
Fork 0

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:
Matthias Krüger 2024-07-26 00:57:24 +02:00 committed by GitHub
commit d87fa5e788
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,