sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit d016848bcee829a9db09ed640d075bcff914f06b
parent 4e028dba47f924b7a9133920fe8ebad4668ce9b7
Author: Rouven Czerwinski <rouven@czerwinskis.de>
Date:   Tue, 26 Feb 2019 20:49:42 +0100

config: remove double assignement to result in get_output_config

Diffstat:
Msway/config/output.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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); }