From 118b91bdf6c23f56fa47f3d16bbf924773f64282 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Mon, 20 Jan 2020 08:20:38 -0800 Subject: [PATCH] pty: fix windows build --- pty/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pty/src/lib.rs b/pty/src/lib.rs index 7a6db84d7..5d7fe2aed 100644 --- a/pty/src/lib.rs +++ b/pty/src/lib.rs @@ -193,4 +193,4 @@ pub fn native_pty_system() -> Box { #[cfg(unix)] pub type NativePtySystem = unix::UnixPtySystem; #[cfg(windows)] -pub type NativePtySystem = win::conpty::UnixPtySystem; +pub type NativePtySystem = win::conpty::ConPtySystem;