diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2009-07-03 13:57:14 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-07-14 10:05:53 +1000 |
commit | 7dd415aa6a3959f15276741db168ba264948ecfe (patch) | |
tree | 84e5b697f073722936dc82f138255f71ef2153d4 /Xi/setmmap.c | |
parent | 912402fd71144bcee255141efe12a78abad39240 (diff) |
Xi: use byte-counting macros instead of manual calculation.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'Xi/setmmap.c')
-rw-r--r-- | Xi/setmmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Xi/setmmap.c b/Xi/setmmap.c index ffcc7f3ce..cbe5dc8c5 100644 --- a/Xi/setmmap.c +++ b/Xi/setmmap.c @@ -96,8 +96,8 @@ ProcXSetDeviceModifierMapping(ClientPtr client) REQUEST(xSetDeviceModifierMappingReq); REQUEST_AT_LEAST_SIZE(xSetDeviceModifierMappingReq); - if (stuff->length != ((sizeof(xSetDeviceModifierMappingReq) >> 2) + - (stuff->numKeyPerModifier << 1))) + if (stuff->length != bytes_to_int32(sizeof(xSetDeviceModifierMappingReq)) + + (stuff->numKeyPerModifier << 1)) return BadLength; rep.repType = X_Reply; |