Swap accidental trailing comma for a semicolon

Part-of: <https://gitlab.freedesktop.org/libinput/libei/-/merge_requests/347>
This commit is contained in:
Peter Hutterer 2025-07-11 10:54:45 +10:00 committed by Marge Bot
parent 883a60d4e6
commit 5567524ecc
2 changed files with 7 additions and 7 deletions

View file

@ -568,7 +568,7 @@ ei_queue_touch_down_event(struct ei_device *device, uint32_t touchid,
struct ei_event *e = ei_event_new_for_device(device); struct ei_event *e = ei_event_new_for_device(device);
e->type = EI_EVENT_TOUCH_DOWN; e->type = EI_EVENT_TOUCH_DOWN;
e->touch.touchid = touchid, e->touch.touchid = touchid;
e->touch.x = x; e->touch.x = x;
e->touch.y = y; e->touch.y = y;
@ -582,7 +582,7 @@ ei_queue_touch_motion_event(struct ei_device *device, uint32_t touchid,
struct ei_event *e = ei_event_new_for_device(device); struct ei_event *e = ei_event_new_for_device(device);
e->type = EI_EVENT_TOUCH_MOTION; e->type = EI_EVENT_TOUCH_MOTION;
e->touch.touchid = touchid, e->touch.touchid = touchid;
e->touch.x = x; e->touch.x = x;
e->touch.y = y; e->touch.y = y;
@ -595,7 +595,7 @@ ei_queue_touch_up_event(struct ei_device *device, uint32_t touchid)
struct ei_event *e = ei_event_new_for_device(device); struct ei_event *e = ei_event_new_for_device(device);
e->type = EI_EVENT_TOUCH_UP; e->type = EI_EVENT_TOUCH_UP;
e->touch.touchid = touchid, e->touch.touchid = touchid;
e->touch.is_cancel = false; e->touch.is_cancel = false;
queue_event(ei_device_get_context(device), e); queue_event(ei_device_get_context(device), e);
@ -607,7 +607,7 @@ ei_queue_touch_cancel_event(struct ei_device *device, uint32_t touchid)
struct ei_event *e = ei_event_new_for_device(device); struct ei_event *e = ei_event_new_for_device(device);
e->type = EI_EVENT_TOUCH_UP; e->type = EI_EVENT_TOUCH_UP;
e->touch.touchid = touchid, e->touch.touchid = touchid;
e->touch.is_cancel = true; e->touch.is_cancel = true;
queue_event(ei_device_get_context(device), e); queue_event(ei_device_get_context(device), e);

View file

@ -392,7 +392,7 @@ eis_queue_touch_down_event(struct eis_device *device, uint32_t touchid,
{ {
struct eis_event *e = eis_event_new_for_device(device); struct eis_event *e = eis_event_new_for_device(device);
e->type = EIS_EVENT_TOUCH_DOWN; e->type = EIS_EVENT_TOUCH_DOWN;
e->touch.touchid = touchid, e->touch.touchid = touchid;
e->touch.x = x; e->touch.x = x;
e->touch.y = y; e->touch.y = y;
eis_queue_event(e); eis_queue_event(e);
@ -404,7 +404,7 @@ eis_queue_touch_motion_event(struct eis_device *device, uint32_t touchid,
{ {
struct eis_event *e = eis_event_new_for_device(device); struct eis_event *e = eis_event_new_for_device(device);
e->type = EIS_EVENT_TOUCH_MOTION; e->type = EIS_EVENT_TOUCH_MOTION;
e->touch.touchid = touchid, e->touch.touchid = touchid;
e->touch.x = x; e->touch.x = x;
e->touch.y = y; e->touch.y = y;
eis_queue_event(e); eis_queue_event(e);
@ -425,7 +425,7 @@ eis_queue_touch_cancel_event(struct eis_device *device, uint32_t touchid)
{ {
struct eis_event *e = eis_event_new_for_device(device); struct eis_event *e = eis_event_new_for_device(device);
e->type = EIS_EVENT_TOUCH_UP; e->type = EIS_EVENT_TOUCH_UP;
e->touch.touchid = touchid, e->touch.touchid = touchid;
e->touch.is_cancel = true; e->touch.is_cancel = true;
eis_queue_event(e); eis_queue_event(e);
} }