From 92ca3dc2e759759545c0e0adea4277b3bddb05e5 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 26 Mar 2009 13:40:07 +1000 Subject: Fix wrong reference to axis and button label atom list. Signed-off-by: Peter Hutterer --- src/evdev.c | 4 ++-- 1 file 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 */ -- cgit v1.2.3