diff options
Diffstat (limited to 'sway')
-rw-r--r-- | sway/focus.c | 2 | ||||
-rw-r--r-- | sway/ipc-server.c (renamed from sway/ipc.c) | 2 | ||||
-rw-r--r-- | sway/main.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sway/focus.c b/sway/focus.c index 3800a46c..7af858a1 100644 --- a/sway/focus.c +++ b/sway/focus.c @@ -6,7 +6,7 @@ #include "layout.h" #include "config.h" #include "input_state.h" -#include "ipc.h" +#include "ipc-server.h" bool locked_container_focus = false; bool locked_view_focus = false; diff --git a/sway/ipc.c b/sway/ipc-server.c index e004aff1..7c737307 100644 --- a/sway/ipc.c +++ b/sway/ipc-server.c @@ -13,7 +13,7 @@ #include <ctype.h> #include <json-c/json.h> #include <list.h> -#include "ipc.h" +#include "ipc-server.h" #include "log.h" #include "config.h" #include "commands.h" diff --git a/sway/main.c b/sway/main.c index ebb45930..19648782 100644 --- a/sway/main.c +++ b/sway/main.c @@ -14,7 +14,7 @@ #include "log.h" #include "readline.h" #include "handlers.h" -#include "ipc.h" +#include "ipc-server.h" #include "sway.h" static bool terminate_request = false; |