diff options
author | Pavel Roskin <1317472+proski@users.noreply.github.com> | 2023-06-10 23:31:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-11 06:31:29 +0000 |
commit | 724f3be3c965f9616995dd4a4a56b43800e747c7 (patch) | |
tree | f645adfed3e6b8ec65d5a1d0c17b6f5cc4dddf2a /alacritty_terminal/src/tty/windows/child.rs | |
parent | 4b92388396c6da783809c7ce511b5cf6be8a0624 (diff) | |
download | alacritty-724f3be3c965f9616995dd4a4a56b43800e747c7.tar.gz alacritty-724f3be3c965f9616995dd4a4a56b43800e747c7.zip |
Bump dependencies
Co-authored-by: Christian Duerr <contact@christianduerr.com>
Diffstat (limited to 'alacritty_terminal/src/tty/windows/child.rs')
-rw-r--r-- | alacritty_terminal/src/tty/windows/child.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty_terminal/src/tty/windows/child.rs b/alacritty_terminal/src/tty/windows/child.rs index 91dd1725..19c8a195 100644 --- a/alacritty_terminal/src/tty/windows/child.rs +++ b/alacritty_terminal/src/tty/windows/child.rs @@ -6,9 +6,9 @@ use mio_extras::channel::{channel, Receiver, Sender}; use windows_sys::Win32::Foundation::{BOOLEAN, HANDLE}; use windows_sys::Win32::System::Threading::{ - RegisterWaitForSingleObject, UnregisterWait, WT_EXECUTEINWAITTHREAD, WT_EXECUTEONLYONCE, + RegisterWaitForSingleObject, UnregisterWait, INFINITE, WT_EXECUTEINWAITTHREAD, + WT_EXECUTEONLYONCE, }; -use windows_sys::Win32::System::WindowsProgramming::INFINITE; use crate::tty::ChildEvent; |