From c5646ef9d86d9bb11f72fef85da13ff5bf112962 Mon Sep 17 00:00:00 2001 From: Tomas Agustin Raies Date: Tue, 25 Feb 2025 11:39:42 -0800 Subject: [PATCH] Ran rustfmt on windows.rs --- src/sys/windows.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sys/windows.rs b/src/sys/windows.rs index e1b46726..f86ced0f 100644 --- a/src/sys/windows.rs +++ b/src/sys/windows.rs @@ -931,7 +931,7 @@ pub(crate) fn unix_sockaddr(path: &Path) -> io::Result { storage.sun_family = crate::sys::AF_UNIX as sa_family_t; // `storage` was initialized to zero above, so the path is // already null terminated. - let bytes: &[i8] = unsafe { slice::from_raw_parts(bytes.as_ptr().cast(), bytes.len()) }; + let bytes: &[i8] = unsafe { slice::from_raw_parts(bytes.as_ptr().cast(), bytes.len()) }; storage.sun_path[..bytes.len()].copy_from_slice(bytes); let base = storage as *const _ as usize;