commit 35d610a43c01bd9a610a37564cc2de35dc88ca45
parent efe370ba1220b11d5c736b23cb109d47483878d2
Author: Rouven Czerwinski <rouven@czerwinskis.de>
Date: Tue, 26 Feb 2019 20:21:33 +0100
cursor: remove unused node assignement
The node variable is not used before its reassigned later in the function,
remove the assignement.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
@@ -431,7 +431,7 @@ static void handle_cursor_motion(struct wl_listener *listener, void *data) {
struct sway_node *node = NULL;
double sx, sy;
if (cursor->active_constraint) {
- node = node_at_coords(cursor->seat,
+ node_at_coords(cursor->seat,
cursor->cursor->x, cursor->cursor->y, &surface, &sx, &sy);
if (cursor->active_constraint->surface != surface) {