From a9ad570eccd0365a580931a36beb4e055dd5dedc Mon Sep 17 00:00:00 2001 From: Kotauskas Date: Thu, 23 May 2024 09:58:42 +0300 Subject: [PATCH] Fix `msg.rs` --- examples/named_pipe/sync/stream/msg.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/named_pipe/sync/stream/msg.rs b/examples/named_pipe/sync/stream/msg.rs index 4eb6221..7a0d908 100644 --- a/examples/named_pipe/sync/stream/msg.rs +++ b/examples/named_pipe/sync/stream/msg.rs @@ -2,7 +2,7 @@ #[cfg(not(windows))] fn main() {} #[cfg(windows)] -fn main() -> io::Result<()> { +fn main() -> std::io::Result<()> { //} use interprocess::os::windows::named_pipe::*; use recvmsg::prelude::*;