Fix some errors with config loading

This commit is contained in:
Drew DeVault 2015-08-10 15:45:36 -04:00
parent accde8343b
commit 54374d81b5
2 changed files with 5 additions and 2 deletions

View file

@ -43,8 +43,8 @@ int main(int argc, char **argv) {
}
setenv("DISPLAY", ":1", 1);
if (load_config()) {
exit(1);
if (!load_config()) {
sway_abort("Unable to load config");
}
wlc_run();