diff --git a/library/std/src/sys/windows/mod.rs b/library/std/src/sys/windows/mod.rs index 8e1450e4d29e..5923638a43bf 100644 --- a/library/std/src/sys/windows/mod.rs +++ b/library/std/src/sys/windows/mod.rs @@ -160,7 +160,7 @@ pub fn to_u16s>(s: S) -> crate::io::Result> { // in the OsStr plus one for the null-terminating character. We are not // wasting bytes here as paths created by this function are primarily used // in an ephemeral fashion. - let mut maybe_result: Vec = Vec::with_capacity(s.len() + 1); + let mut maybe_result = Vec::with_capacity(s.len() + 1); maybe_result.extend(s.encode_wide()); if unrolled_find_u16s(0, &maybe_result).is_some() {