From 389cef9c3b8a97e099c09ad62bea06299fb3020a Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Wed, 1 Oct 2025 20:47:33 +0100 Subject: [PATCH] include/common/box.h: fix declaration/definition arg name difference --- include/common/box.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/common/box.h b/include/common/box.h index 3d900a0e..45c0fc4d 100644 --- a/include/common/box.h +++ b/include/common/box.h @@ -18,7 +18,7 @@ void box_union(struct wlr_box *box_dest, struct wlr_box *box_a, * The returned x & y coordinates are the centered content position * relative to the top-left corner of the bounding box. */ -struct wlr_box box_fit_within(int width, int height, struct wlr_box *bounding_box); +struct wlr_box box_fit_within(int width, int height, struct wlr_box *bound); struct wlr_fbox box_to_fbox(struct wlr_box *box); -- 2.52.0