Normalize swapped dispatch for Fixes{ChangeSaveSet,SelectSelectionInput}
This commit is contained in:
parent
24bebdded4
commit
060a66b6e2
|
@ -72,5 +72,5 @@ SProcXFixesChangeSaveSet(ClientPtr client)
|
||||||
|
|
||||||
swaps(&stuff->length, n);
|
swaps(&stuff->length, n);
|
||||||
swapl(&stuff->window, n);
|
swapl(&stuff->window, n);
|
||||||
return ProcXFixesChangeSaveSet(client);
|
return (*ProcXFixesVector[stuff->xfixesReqType])(client);
|
||||||
}
|
}
|
||||||
|
|
|
@ -224,7 +224,7 @@ SProcXFixesSelectSelectionInput (ClientPtr client)
|
||||||
swapl(&stuff->window, n);
|
swapl(&stuff->window, n);
|
||||||
swapl(&stuff->selection, n);
|
swapl(&stuff->selection, n);
|
||||||
swapl(&stuff->eventMask, n);
|
swapl(&stuff->eventMask, n);
|
||||||
return ProcXFixesSelectSelectionInput(client);
|
return (*ProcXFixesVector[stuff->xfixesReqType])(client);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue