aboutsummaryrefslogtreecommitdiff
path: root/include/ui
diff options
context:
space:
mode:
authorElen Avan <elen.avan@bk.ru>2023-12-22 22:17:21 +0300
committerMichael Tokarev <mjt@tls.msk.ru>2023-12-25 11:00:15 +0300
commit9d5b42beb6978dc6219d5dc029c9d453c6b8d503 (patch)
tree31fad4e7aaa9b7402cb7167d303cefc55554ec09 /include/ui
parent9cdfb1e3a51adccf31e3f018d5c30bd65fdd5355 (diff)
downloadqemu-9d5b42beb6978dc6219d5dc029c9d453c6b8d503.zip
qemu-9d5b42beb6978dc6219d5dc029c9d453c6b8d503.tar.gz
qemu-9d5b42beb6978dc6219d5dc029c9d453c6b8d503.tar.bz2
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: a200d53b1fde "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>
Diffstat (limited to 'include/ui')
-rw-r--r--include/ui/rect.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ui/rect.h b/include/ui/rect.h
index 94898f9..68f05d7 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;
}