diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/evdev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/evdev.c b/src/evdev.c index fc52be8..f65359f 100644 --- a/src/evdev.c +++ b/src/evdev.c @@ -2033,7 +2033,7 @@ EvdevInitProperty(DeviceIntPtr dev) } XIChangeDeviceProperty(dev, prop_axis_label, XA_ATOM, 32, - PropModeReplace, natoms, &atoms, FALSE); + PropModeReplace, natoms, atoms, FALSE); XISetDevicePropertyDeletable(dev, prop_axis_label, FALSE); } /* Button labelling */ @@ -2074,7 +2074,7 @@ EvdevInitProperty(DeviceIntPtr dev) atoms[6] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_HWHEEL_RIGHT); XIChangeDeviceProperty(dev, prop_btn_label, XA_ATOM, 32, - PropModeReplace, pEvdev->buttons, &atoms, FALSE); + PropModeReplace, pEvdev->buttons, atoms, FALSE); XISetDevicePropertyDeletable(dev, prop_btn_label, FALSE); } #endif /* HAVE_LABELS */ |