Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit cbedbd0

Browse files
committed
backend/x11: fix code style in get_touchpoint_from_x11_touch_id
1 parent 5619cf3 commit cbedbd0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

backend/x11/input_device.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ static void send_touch_up_event(struct wlr_x11_output *output,
106106
wlr_signal_emit_safe(&output->touch.events.frame, NULL);
107107
}
108108

109-
static struct wlr_x11_touchpoint* get_touchpoint_from_x11_touch_id(struct wlr_x11_output *output,
110-
uint32_t id) {
109+
static struct wlr_x11_touchpoint *get_touchpoint_from_x11_touch_id(
110+
struct wlr_x11_output *output, uint32_t id) {
111111
struct wlr_x11_touchpoint *touchpoint;
112112
wl_list_for_each(touchpoint, &output->touchpoints, link) {
113113
if (touchpoint->x11_id == id) {

0 commit comments

Comments
 (0)