1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-24 13:52:55 +03:00

pty: fix windows build

This commit is contained in:
Wez Furlong 2020-01-20 08:20:38 -08:00
parent 82c824f371
commit 118b91bdf6

View File

@ -193,4 +193,4 @@ pub fn native_pty_system() -> Box<dyn PtySystem> {
#[cfg(unix)]
pub type NativePtySystem = unix::UnixPtySystem;
#[cfg(windows)]
pub type NativePtySystem = win::conpty::UnixPtySystem;
pub type NativePtySystem = win::conpty::ConPtySystem;