diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-03-24 17:27:03 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2016-03-24 17:27:03 -0400 |
commit | dcf5c67681128c62fd8e807f9681b334f0485f80 (patch) | |
tree | 9ed266fe8b9ab0f720d1defb28f085b26bf9cd98 /sway/config.c | |
parent | 06107bb44eddec993354883436767b931f2aa4d7 (diff) | |
parent | 938ff29b7b14d9840a92acb1d1ee4192bfc8e89e (diff) | |
download | sway-dcf5c67681128c62fd8e807f9681b334f0485f80.tar.xz |
Merge pull request #537 from mikkeloscar/exit-on-config-missing
Gracefully exit when config is not found
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sway/config.c b/sway/config.c index ebf7546d..a5fdf850 100644 --- a/sway/config.c +++ b/sway/config.c @@ -256,7 +256,7 @@ bool load_config(const char *file) { FILE *f = fopen(path, "r"); if (!f) { - fprintf(stderr, "Unable to open %s for reading", path); + sway_log(L_ERROR, "Unable to open %s for reading", path); free(path); return false; } @@ -272,7 +272,11 @@ bool load_config(const char *file) { update_active_bar_modifiers(); - return config_load_success; + if (!config_load_success) { + sway_log(L_ERROR, "Error(s) loading config!"); + } + + return true; } bool read_config(FILE *file, bool is_active) { |