summaryrefslogtreecommitdiff
path: root/Xi/getselev.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/getselev.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/getselev.c')
-rw-r--r--Xi/getselev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xi/getselev.c b/Xi/getselev.c
index ea9bd9ba5..90f6284e5 100644
--- a/Xi/getselev.c
+++ b/Xi/getselev.c
@@ -131,7 +131,7 @@ ProcXGetSelectedExtensionEvents(ClientPtr client)
total_length = (rep.all_clients_count + rep.this_client_count) *
sizeof(XEventClass);
- rep.length = (total_length + 3) >> 2;
+ rep.length = bytes_to_int32(total_length);
buf = (XEventClass *) xalloc(total_length);
tclient = buf;