diff mbox series

[PULL,2/6] qapi/ui: Fix documentation of upper bound value in InputMoveEvent

Message ID 20250210083946.3553415-3-armbru@redhat.com (mailing list archive)
State New
Headers show
Series [PULL,1/6] qapi: fix colon in Since tag section | expand

Commit Message

Markus Armbruster Feb. 10, 2025, 8:39 a.m. UTC
From: Zhang Boyang <zhangboyang.id@gmail.com>

The upper bound of pointer position in InputMoveEvent should be 0x7fff,
according to INPUT_EVENT_ABS_MAX.

Signed-off-by: Zhang Boyang <zhangboyang.id@gmail.com>
Message-ID: <20250116104433.12114-1-zhangboyang.id@gmail.com>
Acked-by: Markus Armbruster <armbru@redhat.com>
[Phrasing tweak squashed in]
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 qapi/ui.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/qapi/ui.json b/qapi/ui.json
index 460a26b981..c536d4e524 100644
--- a/qapi/ui.json
+++ b/qapi/ui.json
@@ -1133,7 +1133,7 @@ 
 # @axis: Which axis is referenced by @value.
 #
 # @value: Pointer position.  For absolute coordinates the valid range
-#     is 0 -> 0x7ffff
+#     is 0 to 0x7fff.
 #
 # Since: 2.0
 ##