mirror of
https://github.com/mii443/qemu.git
synced 2025-12-17 01:28:52 +00:00
include/ui/rect.h: fix qemu_rect_init() mis-assignment
Signed-off-by: Elen Avan <elen.avan@bk.ru> Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2051 Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2050 Fixes:a200d53b1f"virtio-gpu: replace PIXMAN for region/rect test" Cc: qemu-stable@nongnu.org Reviewed-by: Michael Tokarev <mjt@tls.msk.ru> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> (cherry picked from commit9d5b42beb6)
This commit is contained in:
committed by
Michael Tokarev
parent
7d6a2ce8cf
commit
a331dc62ad
@@ -19,7 +19,7 @@ static inline void qemu_rect_init(QemuRect *rect,
|
|||||||
uint16_t width, uint16_t height)
|
uint16_t width, uint16_t height)
|
||||||
{
|
{
|
||||||
rect->x = x;
|
rect->x = x;
|
||||||
rect->y = x;
|
rect->y = y;
|
||||||
rect->width = width;
|
rect->width = width;
|
||||||
rect->height = height;
|
rect->height = height;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user