Skip to content

Commit c06be2e

Browse files
authored
Fix the issue where it gets blocked when using stdio stream mode. (#1176)
1 parent 23ca152 commit c06be2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adapter/codelldb/src/terminal.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ impl Terminal {
102102
#[cfg(windows)]
103103
pub fn detach_console(&self) {
104104
unsafe {
105-
dbg!(winapi::um::wincon::FreeConsole());
105+
winapi::um::wincon::FreeConsole();
106106
}
107107
}
108108
}

0 commit comments

Comments
 (0)