include/common/box.h: fix declaration/definition arg name difference

This commit is contained in:
Johan Malm 2025-10-01 20:47:33 +01:00 committed by Johan Malm
parent e558d0d619
commit 389cef9c3b

View file

@ -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);