From f3e8046eff473aa9bf940b7fbd156cf3dfbfa352 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 23 Feb 2021 00:17:01 -0500 Subject: also create separate pty structs per backend for now, they are identical, but i will change them to be specialized next --- examples/basic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/basic.rs b/examples/basic.rs index d7f99d0..bc9389c 100644 --- a/examples/basic.rs +++ b/examples/basic.rs @@ -35,7 +35,7 @@ impl Drop for RawGuard { } } -fn run(child: &pty_process::Child) { +fn run(child: &pty_process::std::Child) { let _raw = RawGuard::new(); let mut buf = [0_u8; 4096]; let pty = child.pty().as_raw_fd(); -- cgit v1.2.3-54-g00ecf