diff options
author | Daniel Martin <consume.noise@gmail.com> | 2013-08-19 23:00:22 +0200 |
---|---|---|
committer | Arnaud Fontaine <arnau@debian.org> | 2013-10-11 16:18:32 +0900 |
commit | 55c75accecf0e76d2aa38656efd2be4044b9e643 (patch) | |
tree | e08afaddb85eb899fa0f6e214d93d275db0aecdc | |
parent | d0d5c8adb19d488b0c1b3e848e1a2c3177b1e9ec (diff) |
xkb: Fix struct ExtensionDeviceNotify
The field ledId is of type CARD16, not CARD8, see XKBproto.h.
Signed-off-by: Daniel Martin <consume.noise@gmail.com>
Reviewed-By: Ran Benita <ran234@gmail.com>
-rw-r--r-- | src/xkb.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xkb.xml b/src/xkb.xml index df5d614..45f6412 100644 --- a/src/xkb.xml +++ b/src/xkb.xml @@ -2612,7 +2612,7 @@ authorization from the authors. <pad bytes="1" /> <field name="reason" type="CARD16" mask="XIFeature" /> <field name="ledClass" type="CARD16" enum="LedClassResult" /> - <field name="ledID" type="CARD8" /> + <field name="ledID" type="CARD16" /> <field name="ledsDefined" type="CARD32" /> <field name="ledState" type="CARD32" /> <field name="firstButton" type="CARD8" /> |