summaryrefslogtreecommitdiff
path: root/Xi/chgprop.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/chgprop.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/chgprop.c')
-rw-r--r--Xi/chgprop.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/Xi/chgprop.c b/Xi/chgprop.c
index d24a24638..a9f833c25 100644
--- a/Xi/chgprop.c
+++ b/Xi/chgprop.c
@@ -74,13 +74,11 @@ SOFTWARE.
int
SProcXChangeDeviceDontPropagateList(ClientPtr client)
{
- char n;
-
REQUEST(xChangeDeviceDontPropagateListReq);
- swaps(&stuff->length, n);
+ swaps(&stuff->length);
REQUEST_AT_LEAST_SIZE(xChangeDeviceDontPropagateListReq);
- swapl(&stuff->window, n);
- swaps(&stuff->count, n);
+ swapl(&stuff->window);
+ swaps(&stuff->count);
REQUEST_FIXED_SIZE(xChangeDeviceDontPropagateListReq,
stuff->count * sizeof(CARD32));
SwapLongs((CARD32 *) (&stuff[1]), stuff->count);