diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2019-02-26 20:49:42 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2019-02-26 20:49:42 +0100 |
| commit | 44defccdfc6b5f2800a3ce10ca3e93971b0b7cda (patch) | |
| tree | 9bcbf03a10f02e3694535a78b5c69264edf28db2 | |
| parent | 427d07dbfdea7d5ee23ff4f5e631c6e70e0dff28 (diff) | |
config: remove double assignement to result in get_output_config
| -rw-r--r-- | sway/config/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config/output.c b/sway/config/output.c index e7fbad83..cb889b3e 100644 --- a/sway/config/output.c +++ b/sway/config/output.c @@ -378,7 +378,7 @@ static struct output_config *get_output_config(char *identifier, oc_id = config->output_configs->items[i]; } - struct output_config *result = result = new_output_config("temp"); + struct output_config *result = new_output_config("temp"); if (config->reloading) { default_output_config(result, sway_output->wlr_output); } |
