diff options
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++) |