From e3b1a57acaee56ceca175b2ff8c13ec481ecce0d Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Sun, 15 Nov 2020 05:41:47 +0000 Subject: [PATCH] seat: chase swaywm/wlroots@e06c9e43afd8 seat.c:453:58: error: incomplete definition of type 'struct wlr_event_touch_down' wlr_cursor_absolute_to_layout_coords(seat->cursor, event->device, event->x, event->y, &lx, &ly); ~~~~~^ seat.c:450:9: note: forward declaration of 'struct wlr_event_touch_down' struct wlr_event_touch_down *event = data; ^ Based on https://github.com/swaywm/sway/commit/a56098a24e43 --- seat.c | 1 + 1 file changed, 1 insertion(+) diff --git a/seat.c b/seat.c index dea384c..08f25a3 100644 --- a/seat.c +++ b/seat.c @@ -20,6 +20,7 @@ #include #include #include +#include #include #include #if CAGE_HAS_XWAYLAND