]> git.mdlowis.com Git - proto/labwc.git/commitdiff
include/common/box.h: fix declaration/definition arg name difference
authorJohan Malm <jgm323@gmail.com>
Wed, 1 Oct 2025 19:47:33 +0000 (20:47 +0100)
committerJohan Malm <johanmalm@users.noreply.github.com>
Wed, 1 Oct 2025 20:18:44 +0000 (21:18 +0100)
include/common/box.h

index 3d900a0eec4cc0bf3bb6a3b4526502c31171ed3c..45c0fc4d14d2e9142d17234749cf1c99a135a7a4 100644 (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);