diff options
author | Luminarys <[email protected]> | 2015-08-10 14:09:51 -0500 |
---|---|---|
committer | Luminarys <[email protected]> | 2015-08-10 14:09:51 -0500 |
commit | 7c02a1967b3d6345754b69a716459534bd2e1620 (patch) | |
tree | 0d2aeedba067a56ad72ab1ddc109a3b5adb389bc /sway/config.c | |
parent | 68beabda0382e63d2c0101d78893eb20967dbe43 (diff) |
Spaces to Tabs
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sway/config.c b/sway/config.c index da4fac84..280900ca 100644 --- a/sway/config.c +++ b/sway/config.c @@ -18,16 +18,16 @@ void config_defaults(struct sway_config *config) { // Flags config->focus_follows_mouse = true; config->mouse_warping = true; - config->reloading = false; + config->reloading = false; } struct sway_config *read_config(FILE *file, bool is_active) { struct sway_config *config = malloc(sizeof(struct sway_config)); config_defaults(config); - if (is_active) { - config->reloading = true; - } + if (is_active) { + config->reloading = true; + } bool success = true; @@ -61,9 +61,9 @@ _continue: exit(1); } - if (is_active) { - config->reloading = true; - } + if (is_active) { + config->reloading = true; + } return config; } |