From: Johan Malm Date: Wed, 1 Oct 2025 19:47:33 +0000 (+0100) Subject: include/common/box.h: fix declaration/definition arg name difference X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=389cef9c3b8a97e099c09ad62bea06299fb3020a;p=proto%2Flabwc.git include/common/box.h: fix declaration/definition arg name difference --- 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);