Xext: xcmisc: drop now obsolete swap procs
Several SProc's have become no-ops, just calling the actual Proc's, so we can get rid of them entirely. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1639>
This commit is contained in:
		
							parent
							
								
									9a3daf908c
								
							
						
					
					
						commit
						0c87f9b1da
					
				| 
						 | 
				
			
			@ -150,12 +150,6 @@ SProcXCMiscGetVersion(ClientPtr client)
 | 
			
		|||
    return ProcXCMiscGetVersion(client);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static int _X_COLD
 | 
			
		||||
SProcXCMiscGetXIDRange(ClientPtr client)
 | 
			
		||||
{
 | 
			
		||||
    return ProcXCMiscGetXIDRange(client);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static int _X_COLD
 | 
			
		||||
SProcXCMiscGetXIDList(ClientPtr client)
 | 
			
		||||
{
 | 
			
		||||
| 
						 | 
				
			
			@ -174,7 +168,7 @@ SProcXCMiscDispatch(ClientPtr client)
 | 
			
		|||
    case X_XCMiscGetVersion:
 | 
			
		||||
        return SProcXCMiscGetVersion(client);
 | 
			
		||||
    case X_XCMiscGetXIDRange:
 | 
			
		||||
        return SProcXCMiscGetXIDRange(client);
 | 
			
		||||
        return ProcXCMiscGetXIDRange(client);
 | 
			
		||||
    case X_XCMiscGetXIDList:
 | 
			
		||||
        return SProcXCMiscGetXIDList(client);
 | 
			
		||||
    default:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue