(submit/fixup-req-len) Xext: xtest: 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>
This commit is contained in:
parent
676618ec41
commit
0b66c82a6e
|
@ -538,12 +538,6 @@ SProcXTestFakeInput(ClientPtr client)
|
|||
return ProcXTestFakeInput(client);
|
||||
}
|
||||
|
||||
static int _X_COLD
|
||||
SProcXTestGrabControl(ClientPtr client)
|
||||
{
|
||||
return ProcXTestGrabControl(client);
|
||||
}
|
||||
|
||||
static int _X_COLD
|
||||
SProcXTestDispatch(ClientPtr client)
|
||||
{
|
||||
|
@ -556,7 +550,7 @@ SProcXTestDispatch(ClientPtr client)
|
|||
case X_XTestFakeInput:
|
||||
return SProcXTestFakeInput(client);
|
||||
case X_XTestGrabControl:
|
||||
return SProcXTestGrabControl(client);
|
||||
return ProcXTestGrabControl(client);
|
||||
default:
|
||||
return BadRequest;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue