From: Elen Avan Date: Fri, 22 Dec 2023 19:17:21 +0000 (+0300) Subject: include/ui/rect.h: fix qemu_rect_init() mis-assignment X-Git-Tag: v9.0.0-rc0~130^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9d5b42beb6978dc6219d5dc029c9d453c6b8d503;p=thirdparty%2Fqemu.git include/ui/rect.h: fix qemu_rect_init() mis-assignment Signed-off-by: Elen Avan Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2051 Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2050 Fixes: a200d53b1fde "virtio-gpu: replace PIXMAN for region/rect test" Cc: qemu-stable@nongnu.org Reviewed-by: Michael Tokarev Reviewed-by: Marc-André Lureau Signed-off-by: Michael Tokarev --- diff --git a/include/ui/rect.h b/include/ui/rect.h index 94898f92d0d..68f05d78a8e 100644 --- a/include/ui/rect.h +++ b/include/ui/rect.h @@ -19,7 +19,7 @@ static inline void qemu_rect_init(QemuRect *rect, uint16_t width, uint16_t height) { rect->x = x; - rect->y = x; + rect->y = y; rect->width = width; rect->height = height; }