mirror of
https://gitlab.freedesktop.org/libevdev/libevdev.git
synced 2025-12-22 03:10:05 +01:00
Axis values must be int, not unsigned int
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
0309ca0ee5
commit
4b715dd928
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ struct libevdev {
|
|||
unsigned long led_values[NLONGS(LED_CNT)];
|
||||
unsigned long sw_values[NLONGS(SW_CNT)];
|
||||
struct input_absinfo abs_info[ABS_CNT];
|
||||
unsigned int mt_slot_vals[MAX_SLOTS][ABS_MT_CNT];
|
||||
int mt_slot_vals[MAX_SLOTS][ABS_MT_CNT];
|
||||
int num_slots; /**< valid slots in mt_slot_vals */
|
||||
int current_slot;
|
||||
int rep_values[REP_CNT];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue