about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorChris Denton <chris@chrisdenton.dev>2023-11-22 00:44:37 +0000
committerChris Denton <chris@chrisdenton.dev>2023-11-22 13:17:02 +0000
commitb9fe367b9993c33a022411fd08e3da0081abacfd (patch)
tree6fa635f27ea9973835bde848dad9264d32cba010 /library/std/src
parent6c8ebf174c3201ec6333e8bf2df291b88e338d35 (diff)
downloadrust-b9fe367b9993c33a022411fd08e3da0081abacfd.tar.gz
rust-b9fe367b9993c33a022411fd08e3da0081abacfd.zip
x fmt library/std
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/sys/windows/process.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/library/std/src/sys/windows/process.rs b/library/std/src/sys/windows/process.rs
index 8a442ca4acf..51e16b9f13c 100644
--- a/library/std/src/sys/windows/process.rs
+++ b/library/std/src/sys/windows/process.rs
@@ -917,9 +917,8 @@ fn make_proc_thread_attribute_list(
         )
     };
 
-    let mut proc_thread_attribute_list = ProcThreadAttributeList(
-        vec![MaybeUninit::uninit(); required_size].into_boxed_slice(),
-    );
+    let mut proc_thread_attribute_list =
+        ProcThreadAttributeList(vec![MaybeUninit::uninit(); required_size].into_boxed_slice());
 
     // Once we've allocated the necessary memory, it's safe to invoke
     // `InitializeProcThreadAttributeList` to properly initialize the list.