Xi: replace a direct master access with GetMaster()
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Benjamin Tissoires <tissoire@cena.fr>
This commit is contained in:
parent
df6559237a
commit
febce8cb81
|
@ -869,7 +869,7 @@ UpdateDeviceState(DeviceIntPtr device, DeviceEvent* event)
|
||||||
* event being delivered through the slave first
|
* event being delivered through the slave first
|
||||||
*/
|
*/
|
||||||
for (sd = inputInfo.devices; sd; sd = sd->next) {
|
for (sd = inputInfo.devices; sd; sd = sd->next) {
|
||||||
if (IsMaster(sd) || sd->u.master != device)
|
if (IsMaster(sd) || GetMaster(sd, MASTER_POINTER) != device)
|
||||||
continue;
|
continue;
|
||||||
if (!sd->button)
|
if (!sd->button)
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue