From 52bd6aecf24af2aefc202d73aeef205cd62fa8b8 Mon Sep 17 00:00:00 2001 From: Tudor Brindus Date: Sat, 2 May 2020 13:25:27 -0400 Subject: input/cursor: remove erroneous cast for tablet tool button The type expected by wlroots is uint32_t, which `event->button` already is. --- sway/input/cursor.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sway/input/cursor.c b/sway/input/cursor.c index 90ed3b5c..0b11c924 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -739,8 +739,7 @@ static void handle_tool_button(struct wl_listener *listener, void *data) { } wlr_tablet_v2_tablet_tool_notify_button(sway_tool->tablet_v2_tool, - (enum zwp_tablet_pad_v2_button_state)event->button, - (enum zwp_tablet_pad_v2_button_state)event->state); + event->button, (enum zwp_tablet_pad_v2_button_state)event->state); } static void check_constraint_region(struct sway_cursor *cursor) { -- cgit v1.2.3