From 2748b8493354dea3b50817992174450fcf94c6ea Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Thu, 30 Jul 2026 23:40:35 +0200 Subject: [PATCH] style(vdisplay/driver): rustfmt one line the audit bundle left unwrapped MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `5742ec95` landed `create_monitor`'s EDID call split across two lines where it now fits on one, so the drivers workspace fails `cargo fmt --all --check`. Whitespace only — separated from the gamepad work it happened to block. --- packaging/windows/drivers/pf-vdisplay/src/monitor.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packaging/windows/drivers/pf-vdisplay/src/monitor.rs b/packaging/windows/drivers/pf-vdisplay/src/monitor.rs index 371e45ce..19dc4830 100644 --- a/packaging/windows/drivers/pf-vdisplay/src/monitor.rs +++ b/packaging/windows/drivers/pf-vdisplay/src/monitor.rs @@ -777,8 +777,7 @@ pub fn create_monitor( // EDID (serial = id) describes the monitor; the OS calls back into parse_monitor_description. // The session's own mode becomes the preferred-timing DTD when it fits the encoding. - let mut edid = - crate::edid::Edid::generate_with(id, client_lum, Some((width, height, refresh))); + let mut edid = crate::edid::Edid::generate_with(id, client_lum, Some((width, height, refresh))); let mut desc = pod_init!(iddcx::IDDCX_MONITOR_DESCRIPTION); desc.Size = core::mem::size_of::() as u32; desc.Type = iddcx::IDDCX_MONITOR_DESCRIPTION_TYPE::IDDCX_MONITOR_DESCRIPTION_TYPE_EDID;