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/getprop.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/getprop.c')
-rw-r--r-- | Xi/getprop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Xi/getprop.c b/Xi/getprop.c index dfa27f5cc..1f28a8a40 100644 --- a/Xi/getprop.c +++ b/Xi/getprop.c @@ -120,7 +120,7 @@ ProcXGetDeviceDontPropagateList(ClientPtr client) if (count) { rep.count = count; buf = (XEventClass *) xalloc(rep.count * sizeof(XEventClass)); - rep.length = (rep.count * sizeof(XEventClass) + 3) >> 2; + rep.length = bytes_to_int32(rep.count * sizeof(XEventClass)); tbuf = buf; for (i = 0; i < EMASKSIZE; i++) |