From 7fc63eb531b34ee4b0abca3c8ced00b54b07ed81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Tue, 7 Jan 2025 11:00:07 +0400 Subject: [PATCH] qemu-display: fix build with qmp feature MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marc-André Lureau --- qemu-display/src/display.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu-display/src/display.rs b/qemu-display/src/display.rs index 8c5ec15..fcbe936 100644 --- a/qemu-display/src/display.rs +++ b/qemu-display/src/display.rs @@ -196,7 +196,7 @@ impl<'d> Display<'d> { fdname: "fdname".into(), })?; - let conn = zbus::ConnectionBuilder::unix_stream(p1) + let conn = zbus::connection::Builder::unix_stream(p1) .p2p() .build() .await?;