We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dfc725 commit 7ac2c31Copy full SHA for 7ac2c31
1 file changed
xtask/src/ci/qemu.rs
@@ -638,7 +638,7 @@ fn test_vsock_server() -> Result<()> {
638
thread::sleep(Duration::from_secs(10));
639
let first_stream = VsockStream::connect_with_cid_port(3, PORT)?;
640
641
- let mut do_ping_pong = |mut stream: VsockStream| -> Result<()> {
+ let do_ping_pong = |mut stream: VsockStream| -> Result<()> {
642
stream.write_all(b"ping")?;
643
let mut buf = [0u8; 64];
644
let n = stream.read(&mut buf)?;
0 commit comments