gpu_display: fix allow(unsed) typo

BUG=None
TEST=tools/run_tests --platform=mingw64 --verbose

Change-Id: I33096ea9ab48c06a02207ab04d87257970265d20
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3993686
Reviewed-by: Vikram Auradkar <auradkar@google.com>
Commit-Queue: Vikram Auradkar <auradkar@google.com>
Reviewed-by: Pujun Lun <lunpujun@google.com>
Auto-Submit: Daniel Verkamp <dverkamp@chromium.org>
This commit is contained in:
Daniel Verkamp 2022-10-31 11:19:47 -07:00 committed by crosvm LUCI
parent 3c21f8e313
commit 74db80eb13

View file

@ -305,7 +305,7 @@ impl Window {
/// Updates the rectangle in the window's client area to which gfxstream renders.
pub fn update_virtual_display_projection(
&self,
#[allow(unsed)] projection_box: &Box2D<i32, HostWindowSpace>,
#[allow(unused)] projection_box: &Box2D<i32, HostWindowSpace>,
) {
// Safe because `Window` object won't outlive the HWND.
#[cfg(feature = "gfxstream")]