We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e5ee7aa + 2f6154e commit cc87d74Copy full SHA for cc87d74
src/rustup-utils/src/raw.rs
@@ -219,7 +219,7 @@ fn symlink_junction_inner(target: &Path, junction: &Path) -> io::Result<()> {
219
let mut data = [0u8; MAXIMUM_REPARSE_DATA_BUFFER_SIZE];
220
let db = data.as_mut_ptr()
221
as *mut REPARSE_MOUNTPOINT_DATA_BUFFER;
222
- let buf = &mut (*db).ReparseTarget as *mut _;
+ let buf = &mut (*db).ReparseTarget as *mut WCHAR;
223
let mut i = 0;
224
// FIXME: this conversion is very hacky
225
let v = br"\??\";
0 commit comments