From 8986e43a50831676b169eb78e02cd560bf5ce05a Mon Sep 17 00:00:00 2001 From: kaiserschmarrn_ Date: Mon, 22 Mar 2021 16:11:37 -0700 Subject: [PATCH] fix include error --- sway/input/cursor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/input/cursor.c b/sway/input/cursor.c index b6a2faad6..9ebecfc36 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -1,4 +1,3 @@ -#include "sway/config.h" #define _POSIX_C_SOURCE 200809L #include #include @@ -33,6 +32,7 @@ #include "sway/tree/view.h" #include "sway/tree/workspace.h" #include "sway/commands.h" +#include "sway/config.h" static struct wlr_surface *layer_surface_at(struct sway_output *output, struct wl_list *layer, double ox, double oy, double *sx, double *sy) {