diff options
Diffstat (limited to 'xorg-server/Xi/setfocus.c')
-rw-r--r-- | xorg-server/Xi/setfocus.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/xorg-server/Xi/setfocus.c b/xorg-server/Xi/setfocus.c index 03bc37acb..feec3fc35 100644 --- a/xorg-server/Xi/setfocus.c +++ b/xorg-server/Xi/setfocus.c @@ -74,13 +74,11 @@ SOFTWARE. int SProcXSetDeviceFocus(ClientPtr client) { - char n; - REQUEST(xSetDeviceFocusReq); - swaps(&stuff->length, n); + swaps(&stuff->length); REQUEST_SIZE_MATCH(xSetDeviceFocusReq); - swapl(&stuff->focus, n); - swapl(&stuff->time, n); + swapl(&stuff->focus); + swapl(&stuff->time); return (ProcXSetDeviceFocus(client)); } |