aboutsummaryrefslogtreecommitdiffstats
path: root/sway/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/config.c')
-rw-r--r--sway/config.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c
index 321534ed..07b1f2f7 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -403,6 +403,11 @@ static bool load_include_config(const char *path, const char *parent_dir, struct
403 char *real_path = realpath(full_path, NULL); 403 char *real_path = realpath(full_path, NULL);
404 free(full_path); 404 free(full_path);
405 405
406 if (real_path == NULL) {
407 sway_log(L_DEBUG, "%s not found.", path);
408 return false;
409 }
410
406 // check if config has already been included 411 // check if config has already been included
407 int j; 412 int j;
408 for (j = 0; j < config->config_chain->length; ++j) { 413 for (j = 0; j < config->config_chain->length; ++j) {