From 0d0d1075ccb6c714a0c829354558bad839510e6a Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Wed, 1 Oct 2025 20:48:45 +0100 Subject: [PATCH] include/common/scene-helpers: fix declaration/definition arg name difference --- include/common/scene-helpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/common/scene-helpers.h b/include/common/scene-helpers.h index 021d3b16..453052fb 100644 --- a/include/common/scene-helpers.h +++ b/include/common/scene-helpers.h @@ -20,6 +20,6 @@ struct wlr_scene_node *lab_wlr_scene_get_prev_node(struct wlr_scene_node *node); /* A variant of wlr_scene_output_commit() that respects wlr_output->pending */ bool lab_wlr_scene_output_commit(struct wlr_scene_output *scene_output, - struct wlr_output_state *output_state); + struct wlr_output_state *state); #endif /* LABWC_SCENE_HELPERS_H */