diff --git a/sway/desktop/output.c b/sway/desktop/output.c index f8d831d32..1b72fc210 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -533,7 +533,6 @@ static void update_output_manager_config(struct sway_server *server) { static void handle_destroy(struct wl_listener *listener, void *data) { struct sway_output *output = wl_container_of(listener, output, destroy); - struct sway_server *server = output->server; wl_signal_emit(&output->events.destroy, output); if (output->enabled) { @@ -551,7 +550,7 @@ static void handle_destroy(struct wl_listener *listener, void *data) { transaction_commit_dirty(); - update_output_manager_config(server); + update_output_manager_config(output->server); } static void handle_mode(struct wl_listener *listener, void *data) {