diff options
author | Drew DeVault <[email protected]> | 2015-08-05 22:59:06 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-05 22:59:06 -0400 |
commit | 47b28bd335fe279df35f746d5797a1071cb4b989 (patch) | |
tree | b475d79248bb878f0c5060831ca8c3eb486e62fa /sway/config.c | |
parent | e7a88685145d0159b407f9493a5ae579087e8b69 (diff) |
Clean up config loading and launch wayland
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c index e98246ff..b93d3f8c 100644 --- a/sway/config.c +++ b/sway/config.c @@ -33,7 +33,7 @@ struct sway_config *read_config(FILE *file) { goto _continue; } - if (!handle_command(config, line)) { + if (handle_command(config, line) != 0) { success = false; } |