summaryrefslogtreecommitdiff
path: root/Xi/getbmap.c
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2009-07-03 13:57:14 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2009-07-14 10:05:53 +1000
commit7dd415aa6a3959f15276741db168ba264948ecfe (patch)
tree84e5b697f073722936dc82f138255f71ef2153d4 /Xi/getbmap.c
parent912402fd71144bcee255141efe12a78abad39240 (diff)
Xi: use byte-counting macros instead of manual calculation.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'Xi/getbmap.c')
-rw-r--r--Xi/getbmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xi/getbmap.c b/Xi/getbmap.c
index 4a788c66b..e2d58972a 100644
--- a/Xi/getbmap.c
+++ b/Xi/getbmap.c
@@ -109,7 +109,7 @@ ProcXGetDeviceButtonMapping(ClientPtr client)
return BadMatch;
rep.nElts = b->numButtons;
- rep.length = (rep.nElts + (4 - 1)) / 4;
+ rep.length = bytes_to_int32(rep.nElts);
WriteReplyToClient(client, sizeof(xGetDeviceButtonMappingReply), &rep);
(void)WriteToClient(client, rep.nElts, (char *)&b->map[1]);
return Success;