summaryrefslogtreecommitdiff
path: root/Xi/ungrdevk.c
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2011-08-04 00:19:04 -0400
committerMatt Turner <mattst88@gmail.com>2011-08-04 00:19:04 -0400
commit3b508d8ced46c0706abd4a95efe34ce9972eb41a (patch)
tree7ec1825d4b3a49453ebc99f05e7497037f9a01ed /Xi/ungrdevk.c
parentb5db8e73ba366befdfa7ceaafa5a3587fff588fb (diff)
Remove left-over temporary variables from swap macrosbswap-cleanup0
Also, fix whitespace, mainly around swaps(&rep.sequenceNumber) Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> Tested-by: Jeremy Huddleston <jeremyhu@apple.com> Reviewed-by: Daniel Stone <daniel@fooishbar.org> Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'Xi/ungrdevk.c')
-rw-r--r--Xi/ungrdevk.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/Xi/ungrdevk.c b/Xi/ungrdevk.c
index 3b4d6260e..526347db4 100644
--- a/Xi/ungrdevk.c
+++ b/Xi/ungrdevk.c
@@ -78,13 +78,11 @@ SOFTWARE.
int
SProcXUngrabDeviceKey(ClientPtr client)
{
- char n;
-
REQUEST(xUngrabDeviceKeyReq);
- swaps(&stuff->length, n);
+ swaps(&stuff->length);
REQUEST_SIZE_MATCH(xUngrabDeviceKeyReq);
- swapl(&stuff->grabWindow, n);
- swaps(&stuff->modifiers, n);
+ swapl(&stuff->grabWindow);
+ swaps(&stuff->modifiers);
return (ProcXUngrabDeviceKey(client));
}