diff options
Diffstat (limited to 'xorg-server/Xi/getbmap.c')
-rw-r--r-- | xorg-server/Xi/getbmap.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/xorg-server/Xi/getbmap.c b/xorg-server/Xi/getbmap.c index 49b868889..78adc6623 100644 --- a/xorg-server/Xi/getbmap.c +++ b/xorg-server/Xi/getbmap.c @@ -92,13 +92,12 @@ ProcXGetDeviceButtonMapping(ClientPtr client) REQUEST(xGetDeviceButtonMappingReq); REQUEST_SIZE_MATCH(xGetDeviceButtonMappingReq); - rep = (xGetDeviceButtonMappingReply) { - .repType = X_Reply, - .RepType = X_GetDeviceButtonMapping, - .sequenceNumber = client->sequence, - .nElts = 0, - .length = 0 - }; + + rep.repType = X_Reply; + rep.RepType = X_GetDeviceButtonMapping; + rep.sequenceNumber = client->sequence; + rep.nElts = 0; + rep.length = 0; rc = dixLookupDevice(&dev, stuff->deviceid, client, DixGetAttrAccess); if (rc != Success) |