Skip to content

Commit a184180

Browse files
authored
Rollup merge of #101481 - ChrisDenton:uwp-fix, r=thomcc
Fix compile errors for uwp-windows-msvc targets Fixes #101480
2 parents 0a2241e + 88279fa commit a184180

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

std/src/sys/windows/fs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ impl File {
403403
mem::size_of::<c::FILE_ATTRIBUTE_TAG_INFO>().try_into().unwrap(),
404404
))?;
405405
if attr_tag.FileAttributes & c::FILE_ATTRIBUTE_REPARSE_POINT != 0 {
406-
reparse_tag = attr_tag.ReparseTag;
406+
attr.reparse_tag = attr_tag.ReparseTag;
407407
}
408408
}
409409
Ok(attr)

0 commit comments

Comments
 (0)