mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-05-07 10:48:07 +02:00
Make the slots unsigned, the kernel guarantees a base of 0
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
74955e0b95
commit
2aec703c2e
1 changed files with 1 additions and 1 deletions
|
|
@ -162,7 +162,7 @@ struct libinput_event_pointer_axis {
|
||||||
struct libinput_event_touch_touch {
|
struct libinput_event_touch_touch {
|
||||||
struct libinput_event base;
|
struct libinput_event base;
|
||||||
uint32_t time;
|
uint32_t time;
|
||||||
int32_t slot;
|
uint32_t slot;
|
||||||
li_fixed_t x;
|
li_fixed_t x;
|
||||||
li_fixed_t y;
|
li_fixed_t y;
|
||||||
enum libinput_touch_type touch_type;
|
enum libinput_touch_type touch_type;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue