diff options
author | Matt Turner <mattst88@gmail.com> | 2011-08-04 15:35:41 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2011-09-21 17:12:04 -0400 |
commit | 2c7c520cfe0df30f4bc3adba59d9c62582823bf8 (patch) | |
tree | f47282ce2f815acc691cfe188850adf8d6fbfcc3 /Xi/xigrabdev.c | |
parent | c10bad3d3e8ff1b90014770fd470f9c67263e46f (diff) |
Use internal temp variable for swap macros
Also, fix whitespace, mainly around
swaps(&rep.sequenceNumber)
Reviewed-by: Peter Harris <pharris@opentext.com>
Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'Xi/xigrabdev.c')
-rw-r--r-- | Xi/xigrabdev.c | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/Xi/xigrabdev.c b/Xi/xigrabdev.c index 0adc8787d..a9b655c0e 100644 --- a/Xi/xigrabdev.c +++ b/Xi/xigrabdev.c @@ -45,16 +45,14 @@ int SProcXIGrabDevice(ClientPtr client) { - char n; - REQUEST(xXIGrabDeviceReq); - swaps(&stuff->length, n); - swaps(&stuff->deviceid, n); - swapl(&stuff->grab_window, n); - swapl(&stuff->cursor, n); - swapl(&stuff->time, n); - swaps(&stuff->mask_len, n); + swaps(&stuff->length); + swaps(&stuff->deviceid); + swapl(&stuff->grab_window); + swapl(&stuff->cursor); + swapl(&stuff->time); + swaps(&stuff->mask_len); return ProcXIGrabDevice(client); } @@ -115,13 +113,11 @@ ProcXIGrabDevice(ClientPtr client) int SProcXIUngrabDevice(ClientPtr client) { - char n; - REQUEST(xXIUngrabDeviceReq); - swaps(&stuff->length, n); - swaps(&stuff->deviceid, n); - swapl(&stuff->time, n); + swaps(&stuff->length); + swaps(&stuff->deviceid); + swapl(&stuff->time); return ProcXIUngrabDevice(client); } @@ -153,9 +149,7 @@ ProcXIUngrabDevice(ClientPtr client) void SRepXIGrabDevice(ClientPtr client, int size, xXIGrabDeviceReply * rep) { - char n; - - swaps(&rep->sequenceNumber, n); - swapl(&rep->length, n); + swaps(&rep->sequenceNumber); + swapl(&rep->length); WriteToClient(client, size, (char *)rep); } |