diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2012-06-14 08:56:55 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2012-06-14 08:57:32 +1000 |
commit | 3ed8aed32199edaa8621ccea571a04883e050cb5 (patch) | |
tree | 0ac9e99e3459ea5409407eb498545e239c360048 | |
parent | e752e92dbdcf01b1cd46a3853f582ff765d19e90 (diff) |
Fix two typos in spec/comments
The ButtonClass provides the number of buttons, not the lentgh of the mask.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | XI2proto.h | 2 | ||||
-rw-r--r-- | specs/XI2proto.txt | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -154,7 +154,7 @@ typedef struct { uint16_t type; /**< Always ButtonClass */ uint16_t length; /**< Length in 4 byte units */ uint16_t sourceid; /**< source device for this class */ - uint16_t num_buttons; /**< Number of buttons provide */ + uint16_t num_buttons; /**< Number of buttons provided */ } xXIButtonInfo; /** diff --git a/specs/XI2proto.txt b/specs/XI2proto.txt index fb32768..76d7695 100644 --- a/specs/XI2proto.txt +++ b/specs/XI2proto.txt @@ -701,7 +701,7 @@ If major_version is less than 2, a BadValue error occurs. BUTTONCLASS { type: ButtonClass length: CARD16 sourceid: CARD16 - buttons_len: CARD16 + num_buttons: CARD16 state: SETofBUTTONMASK labels: LISTofATOM } |