(submit/fixup-req-len) Xext: panoramiX: drop swapping request length fields
The request struct's length fields aren't used anymore - we have the client->req_len field instead, which also is bigreq-compatible. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
		
							parent
							
								
									5e385960e7
								
							
						
					
					
						commit
						baf7af0e2d
					
				| 
						 | 
					@ -50,10 +50,6 @@ Equipment Corporation.
 | 
				
			||||||
static int _X_COLD
 | 
					static int _X_COLD
 | 
				
			||||||
SProcPanoramiXQueryVersion(ClientPtr client)
 | 
					SProcPanoramiXQueryVersion(ClientPtr client)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    REQUEST(xPanoramiXQueryVersionReq);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    swaps(&stuff->length);
 | 
					 | 
				
			||||||
    REQUEST_SIZE_MATCH(xPanoramiXQueryVersionReq);
 | 
					 | 
				
			||||||
    return ProcPanoramiXQueryVersion(client);
 | 
					    return ProcPanoramiXQueryVersion(client);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -61,8 +57,6 @@ static int _X_COLD
 | 
				
			||||||
SProcPanoramiXGetState(ClientPtr client)
 | 
					SProcPanoramiXGetState(ClientPtr client)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    REQUEST(xPanoramiXGetStateReq);
 | 
					    REQUEST(xPanoramiXGetStateReq);
 | 
				
			||||||
 | 
					 | 
				
			||||||
    swaps(&stuff->length);
 | 
					 | 
				
			||||||
    REQUEST_SIZE_MATCH(xPanoramiXGetStateReq);
 | 
					    REQUEST_SIZE_MATCH(xPanoramiXGetStateReq);
 | 
				
			||||||
    swapl(&stuff->window);
 | 
					    swapl(&stuff->window);
 | 
				
			||||||
    return ProcPanoramiXGetState(client);
 | 
					    return ProcPanoramiXGetState(client);
 | 
				
			||||||
| 
						 | 
					@ -72,8 +66,6 @@ static int _X_COLD
 | 
				
			||||||
SProcPanoramiXGetScreenCount(ClientPtr client)
 | 
					SProcPanoramiXGetScreenCount(ClientPtr client)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    REQUEST(xPanoramiXGetScreenCountReq);
 | 
					    REQUEST(xPanoramiXGetScreenCountReq);
 | 
				
			||||||
 | 
					 | 
				
			||||||
    swaps(&stuff->length);
 | 
					 | 
				
			||||||
    REQUEST_SIZE_MATCH(xPanoramiXGetScreenCountReq);
 | 
					    REQUEST_SIZE_MATCH(xPanoramiXGetScreenCountReq);
 | 
				
			||||||
    swapl(&stuff->window);
 | 
					    swapl(&stuff->window);
 | 
				
			||||||
    return ProcPanoramiXGetScreenCount(client);
 | 
					    return ProcPanoramiXGetScreenCount(client);
 | 
				
			||||||
| 
						 | 
					@ -83,8 +75,6 @@ static int _X_COLD
 | 
				
			||||||
SProcPanoramiXGetScreenSize(ClientPtr client)
 | 
					SProcPanoramiXGetScreenSize(ClientPtr client)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    REQUEST(xPanoramiXGetScreenSizeReq);
 | 
					    REQUEST(xPanoramiXGetScreenSizeReq);
 | 
				
			||||||
 | 
					 | 
				
			||||||
    swaps(&stuff->length);
 | 
					 | 
				
			||||||
    REQUEST_SIZE_MATCH(xPanoramiXGetScreenSizeReq);
 | 
					    REQUEST_SIZE_MATCH(xPanoramiXGetScreenSizeReq);
 | 
				
			||||||
    swapl(&stuff->window);
 | 
					    swapl(&stuff->window);
 | 
				
			||||||
    swapl(&stuff->screen);
 | 
					    swapl(&stuff->screen);
 | 
				
			||||||
| 
						 | 
					@ -94,20 +84,12 @@ SProcPanoramiXGetScreenSize(ClientPtr client)
 | 
				
			||||||
static int _X_COLD
 | 
					static int _X_COLD
 | 
				
			||||||
SProcXineramaIsActive(ClientPtr client)
 | 
					SProcXineramaIsActive(ClientPtr client)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    REQUEST(xXineramaIsActiveReq);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    swaps(&stuff->length);
 | 
					 | 
				
			||||||
    REQUEST_SIZE_MATCH(xXineramaIsActiveReq);
 | 
					 | 
				
			||||||
    return ProcXineramaIsActive(client);
 | 
					    return ProcXineramaIsActive(client);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int _X_COLD
 | 
					static int _X_COLD
 | 
				
			||||||
SProcXineramaQueryScreens(ClientPtr client)
 | 
					SProcXineramaQueryScreens(ClientPtr client)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    REQUEST(xXineramaQueryScreensReq);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    swaps(&stuff->length);
 | 
					 | 
				
			||||||
    REQUEST_SIZE_MATCH(xXineramaQueryScreensReq);
 | 
					 | 
				
			||||||
    return ProcXineramaQueryScreens(client);
 | 
					    return ProcXineramaQueryScreens(client);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue