diff options
author | Elen Avan <elen.avan@bk.ru> | 2023-12-22 22:17:21 +0300 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2023-12-26 18:10:36 +0300 |
commit | a331dc62adf6da31565c13c115402f6f21589346 (patch) | |
tree | f11d2723ff4847fd7a2503fdebcc10b49ecaa787 /include | |
parent | 7d6a2ce8cff462e01f59a3cd60294a26bcfe5d1e (diff) | |
download | qemu-a331dc62adf6da31565c13c115402f6f21589346.zip qemu-a331dc62adf6da31565c13c115402f6f21589346.tar.gz qemu-a331dc62adf6da31565c13c115402f6f21589346.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>
(cherry picked from commit 9d5b42beb6978dc6219d5dc029c9d453c6b8d503)
Diffstat (limited to 'include')
-rw-r--r-- | include/ui/rect.h | 2 |
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; } |