summaryrefslogtreecommitdiff
path: root/test/xi2/protocol-xiwarppointer.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 /test/xi2/protocol-xiwarppointer.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 'test/xi2/protocol-xiwarppointer.c')
-rw-r--r--test/xi2/protocol-xiwarppointer.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/test/xi2/protocol-xiwarppointer.c b/test/xi2/protocol-xiwarppointer.c
index 0c8db453d..2b40f63f9 100644
--- a/test/xi2/protocol-xiwarppointer.c
+++ b/test/xi2/protocol-xiwarppointer.c
@@ -78,7 +78,6 @@ static Bool ScreenSetCursorPosition(DeviceIntPtr dev, ScreenPtr screen,
static void request_XIWarpPointer(ClientPtr client, xXIWarpPointerReq* req,
int error)
{
- char n;
int rc;
rc = ProcXIWarpPointer(client);
@@ -93,15 +92,15 @@ static void request_XIWarpPointer(ClientPtr client, xXIWarpPointerReq* req,
client->swapped = TRUE;
- swapl(&req->src_win, n);
- swapl(&req->dst_win, n);
- swapl(&req->src_x, n);
- swapl(&req->src_y, n);
- swapl(&req->dst_x, n);
- swapl(&req->dst_y, n);
- swaps(&req->src_width, n);
- swaps(&req->src_height, n);
- swaps(&req->deviceid, n);
+ swapl(&req->src_win);
+ swapl(&req->dst_win);
+ swapl(&req->src_x);
+ swapl(&req->src_y);
+ swapl(&req->dst_x);
+ swapl(&req->dst_y);
+ swaps(&req->src_width);
+ swaps(&req->src_height);
+ swaps(&req->deviceid);
rc = SProcXIWarpPointer(client);
assert(rc == error);