mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 01:05:39 +03:00
fix: compilation issue w/ refactored type
This commit is contained in:
@@ -416,8 +416,8 @@ pub fn file_attr(&self) -> io::Result<FileAttr> {
|
||||
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,
|
||||
|
||||
Reference in New Issue
Block a user