Skip to content

Commit 7ac2c31

Browse files
committed
fix(ci): Fix bad mut keyword
1 parent 5dfc725 commit 7ac2c31

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

xtask/src/ci/qemu.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ fn test_vsock_server() -> Result<()> {
638638
thread::sleep(Duration::from_secs(10));
639639
let first_stream = VsockStream::connect_with_cid_port(3, PORT)?;
640640

641-
let mut do_ping_pong = |mut stream: VsockStream| -> Result<()> {
641+
let do_ping_pong = |mut stream: VsockStream| -> Result<()> {
642642
stream.write_all(b"ping")?;
643643
let mut buf = [0u8; 64];
644644
let n = stream.read(&mut buf)?;

0 commit comments

Comments
 (0)