File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,10 @@ async fn inner_main(test_cases: &[&'static dyn TestCase]) {
57
57
}
58
58
59
59
pub fn main ( test_cases : & [ & ' static dyn TestCase ] ) {
60
- tracing_subscriber:: fmt ( ) . pretty ( ) . init ( ) ;
60
+ tracing_subscriber:: fmt ( )
61
+ . pretty ( )
62
+ . with_writer ( std:: io:: stderr)
63
+ . init ( ) ;
61
64
let rt = tokio:: runtime:: Builder :: new_current_thread ( )
62
65
. enable_all ( )
63
66
. build ( )
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ pub(in crate::windows) fn spawn(
169
169
stdio : Stdio ,
170
170
params : ChildParams ,
171
171
) -> Result < PROCESS_INFORMATION , Error > {
172
- let mut proc_thread_attr_list_storage;
172
+ let proc_thread_attr_list_storage;
173
173
let mut security_capabilities;
174
174
let mut startup_info = unsafe {
175
175
let mut startup_info: STARTUPINFOEXW = std:: mem:: zeroed ( ) ;
You can’t perform that action at this time.
0 commit comments