diff options
Diffstat (limited to 'xorg-server/Xi/getkmap.c')
-rw-r--r-- | xorg-server/Xi/getkmap.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/xorg-server/Xi/getkmap.c b/xorg-server/Xi/getkmap.c index 87c197759..2cb9b0978 100644 --- a/xorg-server/Xi/getkmap.c +++ b/xorg-server/Xi/getkmap.c @@ -119,13 +119,13 @@ ProcXGetDeviceKeyMapping(ClientPtr client) if (!syms) return BadAlloc; - rep = (xGetDeviceKeyMappingReply) { - .repType = X_Reply, - .RepType = X_GetDeviceKeyMapping, - .sequenceNumber = client->sequence, - .keySymsPerKeyCode = syms->mapWidth, - .length = (syms->mapWidth * stuff->count) /* KeySyms are 4 bytes */ - }; + + rep.repType = X_Reply; + rep.RepType = X_GetDeviceKeyMapping; + rep.sequenceNumber = client->sequence; + rep.keySymsPerKeyCode = syms->mapWidth; + rep.length = (syms->mapWidth * stuff->count); /* KeySyms are 4 bytes */ + WriteReplyToClient(client, sizeof(xGetDeviceKeyMappingReply), &rep); client->pSwapReplyFunc = (ReplySwapPtr) CopySwap32Write; |