diff options
Diffstat (limited to 'xorg-server/Xi/getfocus.c')
-rw-r--r-- | xorg-server/Xi/getfocus.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/xorg-server/Xi/getfocus.c b/xorg-server/Xi/getfocus.c index 40546cb84..9d6c42ccb 100644 --- a/xorg-server/Xi/getfocus.c +++ b/xorg-server/Xi/getfocus.c @@ -99,12 +99,11 @@ ProcXGetDeviceFocus(ClientPtr client) if (!dev->focus) return BadDevice; - rep = (xGetDeviceFocusReply) { - .repType = X_Reply, - .RepType = X_GetDeviceFocus, - .sequenceNumber = client->sequence, - .length = 0 - }; + + rep.repType = X_Reply; + rep.RepType = X_GetDeviceFocus; + rep.sequenceNumber = client->sequence; + rep.length = 0; focus = dev->focus; |