summaryrefslogtreecommitdiff
path: root/Xi/grabdevk.c
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2011-08-04 15:35:41 -0400
committerMatt Turner <mattst88@gmail.com>2011-08-04 18:08:04 -0400
commit039d90b2a6a68496ef63f4b7e557c41b3bc82379 (patch)
tree89504a2306e280f70e387c8e1715c4d992be432a /Xi/grabdevk.c
parent08dfff92e8d0c2b1726634392c147f6634d1706d (diff)
Use internal temp variable for swap macros
Also, fix whitespace, mainly around swaps(&rep.sequenceNumber) Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'Xi/grabdevk.c')
-rw-r--r--Xi/grabdevk.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/Xi/grabdevk.c b/Xi/grabdevk.c
index b34867b5f..cedd90d9c 100644
--- a/Xi/grabdevk.c
+++ b/Xi/grabdevk.c
@@ -74,14 +74,12 @@ SOFTWARE.
int
SProcXGrabDeviceKey(ClientPtr client)
{
- char n;
-
REQUEST(xGrabDeviceKeyReq);
- swaps(&stuff->length, n);
+ swaps(&stuff->length);
REQUEST_AT_LEAST_SIZE(xGrabDeviceKeyReq);
- swapl(&stuff->grabWindow, n);
- swaps(&stuff->modifiers, n);
- swaps(&stuff->event_count, n);
+ swapl(&stuff->grabWindow);
+ swaps(&stuff->modifiers);
+ swaps(&stuff->event_count);
REQUEST_FIXED_SIZE(xGrabDeviceKeyReq, stuff->event_count * sizeof(CARD32));
SwapLongs((CARD32 *) (&stuff[1]), stuff->event_count);
return (ProcXGrabDeviceKey(client));