summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2019-02-24 04:39:08 +0000
committerFurkan Sahin <furkan-dev@proton.me>2019-02-24 04:39:08 +0000
commitce36272380264ba2cc25e4d1f3e6f5a26af4c7f4 (patch)
tree86d5ab43f65191d2e7bb82cd6ad32ecfe91bf024 /include
parent27a5c32f32aad6a95d4871f3fdc9322c54c3a8ad (diff)
Make load_include_configs void. Fix some cases where WD would not be restored.
Diffstat (limited to 'include')
-rw-r--r--include/sway/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 54cdcc90..ab494e78 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -513,7 +513,7 @@ bool load_main_config(const char *path, bool is_active, bool validating);
/**
* Loads an included config. Can only be used after load_main_config.
*/
-bool load_include_configs(const char *path, struct sway_config *config,
+void load_include_configs(const char *path, struct sway_config *config,
struct swaynag_instance *swaynag);
/**