diff options
| author | Chris Denton <chris@chrisdenton.dev> | 2023-11-22 00:44:37 +0000 |
|---|---|---|
| committer | Chris Denton <chris@chrisdenton.dev> | 2023-11-22 13:17:02 +0000 |
| commit | b9fe367b9993c33a022411fd08e3da0081abacfd (patch) | |
| tree | 6fa635f27ea9973835bde848dad9264d32cba010 /library/std/src | |
| parent | 6c8ebf174c3201ec6333e8bf2df291b88e338d35 (diff) | |
| download | rust-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.rs | 5 |
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. |
