diff options
Diffstat (limited to 'hw/xquartz/xpr/appledri.c')
-rw-r--r-- | hw/xquartz/xpr/appledri.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/hw/xquartz/xpr/appledri.c b/hw/xquartz/xpr/appledri.c index ff70a381a..1304d5a43 100644 --- a/hw/xquartz/xpr/appledri.c +++ b/hw/xquartz/xpr/appledri.c @@ -91,7 +91,6 @@ ProcAppleDRIQueryVersion( ) { xAppleDRIQueryVersionReply rep; - register int n; REQUEST_SIZE_MATCH(xAppleDRIQueryVersionReq); rep.type = X_Reply; @@ -101,8 +100,8 @@ ProcAppleDRIQueryVersion( rep.minorVersion = SERVER_APPLEDRI_MINOR_VERSION; rep.patchVersion = SERVER_APPLEDRI_PATCH_VERSION; if (client->swapped) { - swaps(&rep.sequenceNumber, n); - swapl(&rep.length, n); + swaps(&rep.sequenceNumber); + swapl(&rep.length); } WriteToClient(client, sizeof(xAppleDRIQueryVersionReply), (char *)&rep); return Success; @@ -372,9 +371,8 @@ SProcAppleDRIQueryVersion( register ClientPtr client ) { - register int n; REQUEST(xAppleDRIQueryVersionReq); - swaps(&stuff->length, n); + swaps(&stuff->length); return ProcAppleDRIQueryVersion(client); } |